35 lines
736 B
JSON
35 lines
736 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es5",
|
||
|
"lib": [
|
||
|
"dom",
|
||
|
"dom.iterable",
|
||
|
"esnext"
|
||
|
],
|
||
|
"allowJs": true,
|
||
|
"skipLibCheck": true,
|
||
|
"esModuleInterop": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"strict": false,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"noEmit": true,
|
||
|
"jsx": "react",
|
||
|
"baseUrl": "./src",
|
||
|
"rootDir": ".",
|
||
|
"suppressImplicitAnyIndexErrors": true,
|
||
|
"strictNullChecks": false,
|
||
|
"noImplicitAny": false,
|
||
|
"noFallthroughCasesInSwitch": true
|
||
|
},
|
||
|
"include": [
|
||
|
"src"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"src/test/**",
|
||
|
"node_modules"
|
||
|
]
|
||
|
}
|