2020-10-08 18:21:27 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"jsx": "react",
|
|
|
|
"target": "es2019",
|
|
|
|
"module": "commonjs",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"incremental": false,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"paths": {
|
|
|
|
"*": [
|
|
|
|
"node_modules/*",
|
2020-10-20 20:22:57 +02:00
|
|
|
"webapp/@custom_types/*"
|
2020-10-08 18:21:27 +02:00
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": [
|
2020-10-20 20:22:57 +02:00
|
|
|
"./webapp"
|
2020-10-08 18:21:27 +02:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
]
|
2020-10-20 20:22:57 +02:00
|
|
|
}
|