-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
35 lines (35 loc) · 1.09 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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"esModuleInterop": true,
"strict": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"module": "es2020",
"moduleResolution": "node",
"importHelpers": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"target": "ES2022",
"lib": ["es2019", "dom"],
"paths": {
"@cisstech/nge-ide": ["projects/nge-ide"],
"@cisstech/nge-ide/core": ["projects/nge-ide/core"],
"@cisstech/nge-ide/explorer": ["projects/nge-ide/explorer"],
"@cisstech/nge-ide/search": ["projects/nge-ide/search"],
"@cisstech/nge-ide/settings": ["projects/nge-ide/settings"],
"@cisstech/nge-ide/problems": ["projects/nge-ide/problems"],
"@cisstech/nge-ide/notifications": ["projects/nge-ide/notifications"]
},
"useDefineForClassFields": false
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictTemplates": true,
"strictInjectionParameters": true
}
}