4chan-XZ/tsconfig.json
2023-04-23 06:20:39 +02:00

35 lines
696 B
JSON

{
"compilerOptions": {
"module": "ES2022",
"noImplicitAny": false,
"removeComments": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"target": "ES2020",
"allowJs": true,
"checkJs": true,
"noEmit": true,
"strict": false,
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "hFragment",
"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/*"
]
}