mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-08 10:20:41 +00:00
23 lines
477 B
JSON
23 lines
477 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"sourceMap": true,
|
||
|
"inlineSources": true,
|
||
|
"module": "esNext",
|
||
|
"target": "es2017",
|
||
|
"moduleResolution": "node",
|
||
|
"strict": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noImplicitAny": true,
|
||
|
"noImplicitThis": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"experimentalDecorators": true
|
||
|
},
|
||
|
"include": [
|
||
|
"frontend/**/*.ts",
|
||
|
"frontend/index.js",
|
||
|
"types.d.ts"
|
||
|
],
|
||
|
"exclude": []
|
||
|
}
|