forked from neherlab/covid19_scenarios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
31 lines (31 loc) · 951 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"*": ["src/types/*", "src/generated/*"]
},
"target": "esnext",
"module": "esnext",
"lib": ["esnext", "dom"],
"jsx": "react",
"moduleResolution": "node",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationMap": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"preserveConstEnums": true,
"removeComments": false,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true
},
"exclude": [".build", ".cache", ".ignore", ".reports", "3rdparty", "node_modules", "static", "tsconfig.json"],
"include": ["./.js", "./.jsx", "./.ts", "./.tsx", "./**/*.js", "./**/*.json", "./**/*.jsx", "./**/*.ts", "./**/*.tsx"]
}