4chan-XZ/tsconfig.json
2023-04-28 21:11:18 +02:00

34 lines
781 B
JSON

{
"compilerOptions": {
"module": "ES2022",
"noImplicitAny": false,
"removeComments": true,
"sourceMap": true,
"target": "ES2020",
"allowJs": true,
"checkJs": true,
"noEmit": true,
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "hFragment",
"types": [
"@violentmonkey/types",
"@types/chrome",
"@types/firefox-webext-browser"
],
"lib": [
"DOM",
"ES2020"
],
// needs to be in the deepest dir used as target in the rollup build
// https://stackoverflow.com/q/40460790, https://github.com/rollup/plugins/issues/243
"outDir": "builds/test/crx/tsOutput",
},
"exclude": [
"node_modules",
"tools/*",
"dist/*",
"src/meta/*",
"builds/test/tsOutput"
]
}