-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
124 lines (124 loc) · 3.73 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
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"downlevelIteration": true,
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"target": "es2022",
"module": "es2020",
"moduleResolution": "node",
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"dom"
],
"paths": {
"rxjs/observable/throw": [
"node_modules/rxjs-compat/_esm2015/observable/throw"
],
"rxjs/observable/*": [
"node_modules/rxjs-compat/_esm2015/observable/*"
],
"rxjs/Observable": [
"node_modules/rxjs-compat/_esm2015/Observable"
],
"@wm/build-task": [
"libraries/build-task/"
],
"@wm/mobile-build-task": [
"libraries/mobile-build-task"
],
"@wm/core": [
"libraries/core"
],
"@wavemaker/variables": [
"node_modules/@wavemaker/variables/"
],
"@wavemaker/custom-widgets-m3": [
"node_modules/@wavemaker/custom-widgets-m3/"
],
"@wm/components/base": [
"libraries/components/base"
],
"@wm/components/basic": [
"libraries/components/basic/default"
],
"@wm/components/input": [
"libraries/components/input/default"
],
"@wm/components/page": [
"libraries/components/page/default"
],
"@wm/mobile/components/basic": [
"libraries/mobile/components/basic/default"
],
"@wm/mobile/components/page": [
"libraries/mobile/components/page/default"
],
"@wm/components/dialogs": [
"libraries/components/dialogs/default"
],
"@wm/mobile/components/*": [
"libraries/mobile/components/*"
],
"@wm/components/*": [
"libraries/components/*"
],
"@wm/transpiler": [
"libraries/transpiler"
],
"@wm/security": [
"libraries/security"
],
"@swipey": [
"libraries/swipey"
],
"@wm/http": [
"libraries/http"
],
"@wm/oAuth": [
"libraries/oAuth"
],
"@wm/variables": [
"libraries/variables"
],
"@wm/mobile/core": [
"libraries/mobile/core"
],
"@wm/mobile/components": [
"libraries/mobile/components"
],
"@wm/mobile/offline": [
"libraries/mobile/offline"
],
"@wm/mobile/variables": [
"libraries/mobile/variables"
],
"@wm/runtime/base": [
"libraries/runtime/base"
],
"@wm/runtime/dynamic": [
"libraries/runtime/dynamic"
],
"@wm/mobile/runtime": [
"libraries/mobile/runtime"
],
"@wm/mobile/runtime/dynamic": [
"libraries/mobile/runtime-dynamic"
]
},
"useDefineForClassFields": false
},
"angularCompilerOptions": {
"compilationMode": "full",
"strictMetadataEmit": false,
"fullTemplateTypeCheck": false
}
}