mirror of
https://github.com/LalleSX/4chan-XZ.git
synced 2025-10-07 07:22:37 +02:00
23 lines
728 B
JSON
23 lines
728 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ES2022",
|
|
"noImplicitAny": false,
|
|
"removeComments": false,
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ES2020",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"noEmit": true,
|
|
"jsx": "react",
|
|
"jsxFactory": "h",
|
|
"jsxFragmentFactory": "hFragment",
|
|
"types": ["@violentmonkey/types", "@types/chrome", "@types/jquery"],
|
|
"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": ["builds/test/tsOutput", "src/meta/*", "./tools/*", "dist/*"]
|
|
}
|