karideo/front/tsconfig.json

39 lines
721 B
JSON
Raw Normal View History

2019-12-21 21:53:18 +01:00
{
"compileOnSave": false,
"compilerOptions": {
2020-01-03 21:52:02 +01:00
"downlevelIteration": true,
"importHelpers": true,
2019-12-21 21:53:18 +01:00
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2024-05-12 11:58:36 +02:00
"target": "ES2018",
2019-12-21 21:53:18 +01:00
"typeRoots": [
"node_modules/@types"
],
"lib": [
2024-05-12 11:58:36 +02:00
"ES2018",
2019-12-21 21:53:18 +01:00
"dom"
2020-01-03 21:52:02 +01:00
],
2024-05-12 11:58:36 +02:00
"module": "ES2020",
"baseUrl": "./src",
"paths": {
"@app/*": [
"./src/app/*"
],
"@common/*": [
"./src/common/*"
]
}
2024-04-15 00:58:42 +02:00
},
"angularCompilerOptions": {
"_enabledBlockTypes": [
"if",
"switch",
"for",
"defer"
]
2019-12-21 21:53:18 +01:00
}
2024-05-12 11:58:36 +02:00
}