36 lines
735 B
JSON
36 lines
735 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es6",
|
||
|
"lib": [
|
||
|
"dom",
|
||
|
"dom.iterable",
|
||
|
"esnext"
|
||
|
],
|
||
|
"allowJs": true,
|
||
|
"skipLibCheck": true,
|
||
|
"esModuleInterop": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"strict": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"isolatedModules": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"noEmit": true,
|
||
|
"jsx": "react-jsx",
|
||
|
"sourceMap": true,
|
||
|
"declaration": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"incremental": true,
|
||
|
"noFallthroughCasesInSwitch": true
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules/**/*",
|
||
|
"build/**/*"
|
||
|
]
|
||
|
}
|