-
Notifications
You must be signed in to change notification settings - Fork 9
/
tsconfig.json
36 lines (36 loc) · 1.16 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "src",
"outDir": "hydro-serving-ui",
"sourceMap": true,
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2015",
"downlevelIteration": true,
"module": "esnext",
"moduleResolution": "node",
"plugins": [{ "name": "@angular/language-service" }],
"paths": {
"@environments/*": ["environments/*"],
"@app/*": ["app/*"],
"@components/*": ["app/components/*"],
"@applications/*": ["modules/applications/*"],
"@models/*": ["modules/models/*"],
"@core/*": ["modules/core/*"],
"@shared/*": ["modules/shared/*"],
"@monitoring/*": ["modules/monitoring/*"],
"@profiler/*": ["modules/profiler/*"],
"@dialog/*": ["modules/dialog/*"],
"@servables/*": ["modules/servables/*"],
"@rootcause/*": ["modules/root-cause/*"],
"@testing/*": ["testing/*"],
"@charts/*": ["modules/charts/*"],
"@deploymentConfigs": ["modules/deployment-config/*"]
},
"typeRoots": ["node_modules/@types"],
"lib": ["es2015", "es2017", "dom"],
"types": ["node"]
}
}