karusic/front/tsconfig.json

39 lines
721 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"downlevelIteration": true,
"importHelpers": true,
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "ES2021",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"ES2021",
"dom"
],
"module": "ES2022",
"baseUrl": "./src",
"paths": {
"@app/*": [
"./src/app/*"
],
"@common/*": [
"./src/common/*"
]
}
},
"angularCompilerOptions": {
"_enabledBlockTypes": [
"if",
"switch",
"for",
"defer"
]
}
}