-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.json
61 lines (61 loc) · 1.37 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"module": "es2020",
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2022",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"dom"
],
"paths": {
"storage": [
"dist/storage/storage",
"dist/storage"
],
"dialogs": [
"dist/dialogs/dialogs",
"dist/dialogs"
],
"http": [
"dist/http/http",
"dist/http"
],
"inline-edit-field": [
"dist/inline-edit-field/inline-edit-field",
"dist/inline-edit-field"
],
"repository": [
"./dist/repository"
],
"loading-indicator": [
"dist/loading-indicator/loading-indicator",
"dist/loading-indicator"
],
"virtual-grid": [
"dist/virtual-grid/virtual-grid",
"dist/virtual-grid"
]
},
"useDefineForClassFields": false
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
}