swaf/tsconfig.json

44 lines
907 B
JSON
Raw Normal View History

2020-04-22 15:52:17 +02:00
{
2021-04-27 15:44:04 +02:00
"compilerOptions": {
"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,
"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": [
"es2020",
"dom"
2021-04-27 15:44:04 +02:00
],
"resolveJsonModule": true,
"skipLibCheck": true,
"allowJs": true,
2021-04-27 15:44:04 +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
}