-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtsconfig.json
111 lines (111 loc) · 3.32 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": false,
"compilerOptions": {
"paths": {
"@helgoland/auth": [
"dist/helgoland/auth",
"projects/helgoland/auth/src/public-api.ts"
],
"@helgoland/caching": [
"dist/helgoland/caching",
"projects/helgoland/caching/src/public-api.ts"
],
"@helgoland/control": [
"dist/helgoland/control",
"projects/helgoland/control/src/public-api.ts"
],
"@helgoland/core": [
"dist/helgoland/core",
"projects/helgoland/core/src/public-api.ts"
],
"@helgoland/d3": [
"dist/helgoland/d3",
"projects/helgoland/d3/src/public-api.ts"
],
"@helgoland/depiction": [
"dist/helgoland/depiction",
"projects/helgoland/depiction/src/public-api.ts"
],
"@helgoland/eventing": [
"dist/helgoland/eventing",
"projects/helgoland/eventing/src/public-api.ts"
],
"@helgoland/facet-search": [
"dist/helgoland/facet-search",
"projects/helgoland/facet-search/src/public-api.ts"
],
"@helgoland/favorite": [
"dist/helgoland/favorite",
"projects/helgoland/favorite/src/public-api.ts"
],
"@helgoland/map": [
"dist/helgoland/map",
"projects/helgoland/map/src/public-api.ts"
],
"@helgoland/modification": [
"dist/helgoland/modification",
"projects/helgoland/modification/src/public-api.ts"
],
"@helgoland/open-layers": [
"dist/helgoland/open-layers",
"projects/helgoland/open-layers/src/public-api.ts"
],
"@helgoland/permalink": [
"dist/helgoland/permalink",
"projects/helgoland/permalink/src/public-api.ts"
],
"@helgoland/selector": [
"dist/helgoland/selector",
"projects/helgoland/selector/src/public-api.ts"
],
"@helgoland/sensorml": [
"dist/helgoland/sensorml",
"projects/helgoland/sensorml/src/public-api.ts"
],
"@helgoland/time": [
"dist/helgoland/time",
"projects/helgoland/time/src/public-api.ts"
],
"@helgoland/time-range-slider": [
"dist/helgoland/time-range-slider",
"projects/helgoland/time-range-slider/src/public-api.ts"
],
"helgoland-common": [
"dist/helgoland-common",
"projects/helgoland-common/src/public-api.ts"
]
},
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"lib": [
"ES2022",
"dom"
],
"useDefineForClassFields": false
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}