SponsorBlock/tsconfig-production.json

23 lines
534 B
JSON
Raw Permalink Normal View History

2022-06-22 19:21:15 +02:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
2022-06-22 19:21:15 +02:00
"sourceMap": false,
"outDir": "dist/js",
"noEmitOnError": false,
"typeRoots": [ "node_modules/@types" ],
"resolveJsonModule": true,
"jsx": "react",
"lib": [
"es2019",
"dom",
"dom.iterable"
]
2023-07-07 09:38:33 +02:00
},
"include": [
"src/**/*"
]
2022-06-22 19:21:15 +02:00
}