31 lines
651 B
JSON
31 lines
651 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2021",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"ES2021",
|
|
"WebWorker",
|
|
],
|
|
"rootDir": "src",
|
|
// "outDir": "js",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
// "noEmit": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
// "public"
|
|
]
|
|
}
|