-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
94 lines (94 loc) · 2.72 KB
/
tsconfig.json
File metadata and controls
94 lines (94 loc) · 2.72 KB
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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"downlevelIteration": true,
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"target": "es2022",
"module": "es2022",
"moduleResolution": "node",
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2022",
"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/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/*"
],
"@wm/components/input/*": [
"libraries/components/input/*"
],
"@wm/components/page": [
"libraries/components/page/default"
],
"@wm/components/dialogs": [
"libraries/components/dialogs/default"
],
"@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/runtime/base": [
"libraries/runtime/base"
],
"@wm/runtime/dynamic": [
"libraries/runtime/dynamic"
]
},
"useDefineForClassFields": false
},
"angularCompilerOptions": {
"compilationMode": "full",
"strictMetadataEmit": false,
"fullTemplateTypeCheck": false
}
}