-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.base.json
85 lines (85 loc) · 2.4 KB
/
tsconfig.base.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
{
"extends": "./tsconfig.hug.json",
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"isolatedModules": true,
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"lib": [
"ES2022",
"dom"
],
"paths": {
"@hug/ngx-core": [
"dist/ngx-core"
],
"@hug/ngx-date-picker": [
"dist/ngx-date-picker"
],
"@hug/ngx-layout": [
"dist/ngx-layout"
],
"@hug/ngx-list-loader": [
"dist/ngx-list-loader"
],
"@hug/ngx-message-box": [
"dist/ngx-message-box"
],
"@hug/ngx-message-box-dialog": [
"dist/ngx-message-box-dialog"
],
"@hug/ngx-numeric-stepper": [
"dist/ngx-numeric-stepper"
],
"@hug/ngx-overlay": [
"dist/ngx-overlay"
],
"@hug/ngx-search-container": [
"dist/ngx-search-container"
],
"@hug/ngx-sidenav": [
"dist/ngx-sidenav"
],
"@hug/ngx-snackbar": [
"dist/ngx-snackbar"
],
"@hug/ngx-splitter": [
"dist/ngx-splitter"
],
"@hug/ngx-status": [
"dist/ngx-status"
],
"@hug/ngx-time-picker": [
"dist/ngx-time-picker"
],
"@hug/ngx-tooltip": [
"dist/ngx-tooltip"
],
"@hug/ngx-user-card": [
"dist/ngx-user-card"
],
"@hug/ngx-user-tooltip": [
"dist/ngx-user-tooltip"
]
}
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}