4chan-XZ/tsconfig.json
2023-04-23 02:42:57 +02:00

33 lines
672 B
JSON

{
"compilerOptions": {
"module": "ES2022",
"noImplicitAny": false,
"removeComments": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"target": "ES2020",
"allowJs": true,
"checkJs": true,
"noEmit": true,
"strict": true,
"jsx": "react",
"jsxFactory": "jsx",
"jsxFragmentFactory": "h",
"types": [
"@violentmonkey/types",
"@types/chrome",
"@types/jquery",
"@types/node"
],
"lib": ["DOM", "ES2020"],
"outDir": "builds/test/crx/tsOutput",
"esModuleInterop": true
},
"exclude": [
"builds/test/tsOutput",
"src/meta/*",
"./tools/*",
"dist/*"
]
}