taskana/web/tsconfig.json

49 lines
947 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"downlevelIteration": true,
"module": "es2020",
"outDir": "./dist/out-tsc",
"baseUrl": "src",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2017",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2020",
"dom"
],
"paths": {
"@task/*": [
"app/v2/task/*"
],
"@shared/*": [
"app/v2/shared/*"
],
"@classification/*": [
"app/v2/classification/*"
],
"@history/*": [
"app/v2/history/*"
],
"@monitor/*": [
"app/v2/monitor/*"
],
"@shell/*": [
"app/v2/shell/*"
],
"@task-routing/*": [
"app/v2/task-routing/*"
],
"@workbasket/*": [
"app/v2/workbasket/*"
]
}
}
}