argos/dmp-frontend/tsconfig.json

34 lines
658 B
JSON
Raw Normal View History

{
"compileOnSave": false,
2018-11-27 18:33:17 +01:00
"compilerOptions": {
2023-10-05 15:58:45 +02:00
"baseUrl": "./src",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "es2020",
2021-09-24 20:52:14 +02:00
"moduleResolution": "node",
2023-10-05 15:58:45 +02:00
"experimentalDecorators": true,
"importHelpers": true,
"skipLibCheck": true,
"target": "ES2022",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"dom"
],
"paths": {
"@app/*": [
"./app/*"
],
"@common/*": [
"./common/*"
],
"@annotation-service/*":[
"./annotation-service/*"
2023-10-05 15:58:45 +02:00
]
},
"useDefineForClassFields": false
}
}