2020-04-22 15:52:17 +02:00
|
|
|
{
|
2021-04-27 15:44:04 +02:00
|
|
|
"compilerOptions": {
|
2021-05-03 19:29:22 +02:00
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
2021-04-27 15:44:04 +02:00
|
|
|
"declaration": true,
|
|
|
|
"stripInternal": true,
|
2020-04-22 15:52:17 +02:00
|
|
|
|
2021-04-27 15:44:04 +02:00
|
|
|
"strict": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2021-05-27 15:26:19 +02:00
|
|
|
"strictNullChecks": true,
|
2020-04-22 15:52:17 +02:00
|
|
|
|
2021-04-27 15:44:04 +02:00
|
|
|
"moduleResolution": "Node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"baseUrl": "dist",
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
"inlineSources": true,
|
|
|
|
"outDir": "dist",
|
2020-04-22 15:52:17 +02:00
|
|
|
|
2021-04-27 15:44:04 +02:00
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types",
|
|
|
|
"src/types"
|
|
|
|
],
|
|
|
|
"lib": [
|
2021-06-01 14:34:04 +02:00
|
|
|
"es2020",
|
|
|
|
"dom"
|
2021-04-27 15:44:04 +02:00
|
|
|
],
|
|
|
|
"resolveJsonModule": true,
|
2021-05-27 15:26:19 +02:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"allowJs": true,
|
2021-04-27 15:44:04 +02:00
|
|
|
},
|
2021-05-27 15:26:19 +02:00
|
|
|
"include": [],
|
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "src",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "src/assets/ts",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "src/assets/views",
|
|
|
|
}
|
2021-04-27 15:44:04 +02:00
|
|
|
]
|
2021-03-18 16:22:25 +01:00
|
|
|
}
|