dashboard/tsconfig.json

27 lines
535 B
JSON
Raw Normal View History

2020-07-08 19:36:36 +02:00
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2021-04-03 16:54:44 +02:00
"jsx": "react-jsx",
2021-03-29 12:43:51 +02:00
"noFallthroughCasesInSwitch": true
2020-07-08 19:36:36 +02:00
},
"include": [
"src"
]
}