forked from AABoyles/MicrobeTrace
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathtsconfig.json
More file actions
48 lines (48 loc) · 1014 Bytes
/
tsconfig.json
File metadata and controls
48 lines (48 loc) · 1014 Bytes
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
37
38
39
40
41
42
43
44
45
46
47
48
{
"compileOnSave": true,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": false,
"declaration": false,
"module": "esnext",
"moduleResolution": "bundler",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2022",
"skipLibCheck": true,
"strictNullChecks": false,
"typeRoots": [
"node_modules/@types",
"googlemaps",
"@angular/platform-browser"
],
"lib": [
"es6",
"es2019",
"es7",
"dom",
"dom.iterable"
],
"paths": {
"@shared/*": [
"./src/shared/*"
],
"@app/*": [
"./src/app/*"
],
"@abp/*": [
"node_modules/abp-ng2-module/dist/src/*"
],
"@metronic/*": [
"./src/assets/metronic/*"
]
},
"esModuleInterop": true,
"useDefineForClassFields": false
},
"exclude": [
"./src/app/visualizationComponents/GanttComponent/*"
]
}