2020-10-08 18:21:27 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"jsx": "react",
|
|
|
|
"target": "es2019",
|
|
|
|
"module": "commonjs",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strict": true,
|
2020-11-13 02:31:54 +01:00
|
|
|
"strictNullChecks": true,
|
2020-10-08 18:21:27 +02:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"incremental": false,
|
|
|
|
"outDir": "./dist",
|
2020-12-10 22:45:56 +01:00
|
|
|
"moduleResolution": "node"
|
2020-10-08 18:21:27 +02:00
|
|
|
},
|
|
|
|
"include": [
|
2020-10-20 20:48:22 +02:00
|
|
|
"."
|
2020-10-08 18:21:27 +02:00
|
|
|
],
|
|
|
|
"exclude": [
|
2020-11-13 02:31:54 +01:00
|
|
|
".git",
|
|
|
|
"**/node_modules/*",
|
|
|
|
"dist",
|
|
|
|
"pack"
|
|
|
|
]
|
2020-10-20 20:22:57 +02:00
|
|
|
}
|