SponsorBlock/tsconfig.json

23 lines
533 B
JSON
Raw Permalink Normal View History

2020-01-29 04:16:48 +01:00
{
"compilerOptions": {
"module": "commonjs",
2021-07-15 20:09:10 +02:00
"target": "es6",
2020-01-29 04:16:48 +01:00
"noImplicitAny": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
2022-06-22 19:21:15 +02:00
"sourceMap": true,
2020-01-29 04:16:48 +01:00
"outDir": "dist/js",
2021-06-27 05:20:09 +02:00
"noEmitOnError": false,
"typeRoots": [ "node_modules/@types" ],
2020-02-25 06:38:03 +01:00
"resolveJsonModule": true,
2021-09-02 01:51:42 +02:00
"jsx": "react",
"lib": [
2022-06-22 19:21:15 +02:00
"es2019",
2021-09-02 01:51:42 +02:00
"dom",
"dom.iterable"
]
2023-07-07 09:38:33 +02:00
},
"include": [
"src/**/*"
]
2020-01-29 04:16:48 +01:00
}