erratic-gate/tsconfig.json

27 lines
524 B
JSON
Raw Permalink Normal View History

2019-03-06 09:25:58 +01:00
{
2023-10-29 03:14:12 +01:00
"compilerOptions": {
"target": "ESNext",
2023-10-29 04:54:24 +01:00
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
2023-10-29 03:14:12 +01:00
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Features */
"experimentalDecorators": true,
"downlevelIteration": true,
"strictNullChecks": true
},
"include": [
"src"
],
2020-04-13 22:39:00 +02:00
}