-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
115 lines (115 loc) · 2.49 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
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"paths": {
"button": [
"dist/button/button",
"dist/button"
],
"checkbox": [
"dist/checkbox/checkbox",
"dist/checkbox"
],
"confirm-action": [
"dist/confirm-action"
],
"contact": [
"dist/contact"
],
"datepicker": [
"dist/datepicker"
],
"dropdown": [
"dist/dropdown"
],
"icon": [
"dist/icon/icon",
"dist/icon"
],
"infinite-scroll": [
"dist/infinite-scroll"
],
"input": [
"dist/input"
],
"input-file": [
"dist/input-file"
],
"mini-menu": [
"dist/mini-menu"
],
"multi-select": [
"dist/multi-select",
"dist/multi-select/multi-select"
],
"pagination": [
"dist/pagination"
],
"radio-button": [
"dist/radio-button/radio-button",
"dist/radio-button"
],
"search-bar": [
"dist/search-bar/search-bar",
"dist/search-bar"
],
"searchbar": [
"dist/searchbar/searchbar",
"dist/searchbar"
],
"selector": [
"dist/selector"
],
"stepper": [
"dist/stepper"
],
"switch": [
"dist/switch"
],
"template-input": [
"dist/template-input"
],
"timepicker": [
"dist/timepicker"
],
"toast": [
"dist/toast"
],
"tooltip": [
"dist/tooltip"
],
"visual-identity": [
"dist/visual-identity/visual-identity",
"dist/visual-identity"
]
},
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2022",
"module": "es2020",
"lib": [
"es2020",
"dom"
],
"useDefineForClassFields": false
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}