ily.li/tsconfig.json

44 lines
750 B
JSON
Raw Normal View History

2020-04-23 14:55:58 +02:00
{
"compilerOptions": {
2021-11-20 19:54:59 +01:00
"target": "ESNext",
"module": "ESNext",
"declaration": true,
"stripInternal": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"strictNullChecks": true,
"moduleResolution": "Node",
2020-04-23 14:55:58 +02:00
"esModuleInterop": true,
2021-11-20 19:54:59 +01:00
"baseUrl": "dist",
"inlineSourceMap": true,
"inlineSources": true,
2020-04-23 14:55:58 +02:00
"outDir": "dist",
2021-11-20 19:54:59 +01:00
"typeRoots": [
"node_modules/@types",
"src/types"
],
2020-04-23 14:55:58 +02:00
"lib": [
2020-09-23 13:30:48 +02:00
"es2020",
2021-11-20 19:54:59 +01:00
"dom"
2020-10-05 13:38:03 +02:00
],
2021-11-20 19:54:59 +01:00
"resolveJsonModule": true,
"skipLibCheck": true,
"allowJs": true
2020-04-23 14:55:58 +02:00
},
2021-11-20 19:54:59 +01:00
"include": [],
"references": [
{
"path": "src",
},
{
"path": "src/assets/ts",
},
{
"path": "src/assets/views",
}
2020-04-23 14:55:58 +02:00
]
2020-10-05 13:38:03 +02:00
}