forked from valor-software/ngx-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
164 lines (164 loc) · 4.28 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"strict": false,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": false,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2017",
"module": "es2020",
"lib": [
"es2020",
"dom"
],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@ngx-bootstrap-doc/accordion": [
"libs/doc-pages/accordion/src/index.ts"
],
"@ngx-bootstrap-doc/alerts": [
"libs/doc-pages/alerts/src/index.ts"
],
"@ngx-bootstrap-doc/buttons": [
"libs/doc-pages/buttons/src/index.ts"
],
"@ngx-bootstrap-doc/carousel": [
"libs/doc-pages/carousel/src/index.ts"
],
"@ngx-bootstrap-doc/collapse": [
"libs/doc-pages/collapse/src/index.ts"
],
"@ngx-bootstrap-doc/datepicker": [
"libs/doc-pages/datepicker/src/index.ts"
],
"@ngx-bootstrap-doc/docs": [
"libs/common-docs/src/index.ts"
],
"@ngx-bootstrap-doc/dropdown": [
"libs/doc-pages/dropdown/src/index.ts"
],
"@ngx-bootstrap-doc/modal": [
"libs/doc-pages/modal/src/index.ts"
],
"@ngx-bootstrap-doc/pagination": [
"libs/doc-pages/pagination/src/index.ts"
],
"@ngx-bootstrap-doc/popover": [
"libs/doc-pages/popover/src/index.ts"
],
"@ngx-bootstrap-doc/progressbar": [
"libs/doc-pages/progressbar/src/index.ts"
],
"@ngx-bootstrap-doc/rating": [
"libs/doc-pages/rating/src/index.ts"
],
"@ngx-bootstrap-doc/sortable": [
"libs/doc-pages/sortable/src/index.ts"
],
"@ngx-bootstrap-doc/tabs": [
"libs/doc-pages/tabs/src/index.ts"
],
"@ngx-bootstrap-doc/timepicker": [
"libs/doc-pages/timepicker/src/index.ts"
],
"@ngx-bootstrap-doc/tooltip": [
"libs/doc-pages/tooltip/src/index.ts"
],
"@ngx-bootstrap-doc/typeahead": [
"libs/doc-pages/typeahead/src/index.ts"
],
"ngx-bootstrap/accordion": [
"src/accordion/index.ts"
],
"ngx-bootstrap/alert": [
"src/alert/index.ts"
],
"ngx-bootstrap/buttons": [
"src/buttons/index.ts"
],
"ngx-bootstrap/carousel": [
"src/carousel/index.ts"
],
"ngx-bootstrap/chronos": [
"src/chronos/index.ts"
],
"ngx-bootstrap/collapse": [
"src/collapse/index.ts"
],
"ngx-bootstrap/component-loader": [
"src/component-loader/index.ts"
],
"ngx-bootstrap/datepicker": [
"src/datepicker/index.ts"
],
"ngx-bootstrap/dropdown": [
"src/dropdown/index.ts"
],
"ngx-bootstrap/focus-trap": [
"src/focus-trap/index.ts"
],
"ngx-bootstrap/locale": [
"src/locale/index.ts"
],
"ngx-bootstrap/mini-ngrx": [
"src/mini-ngrx/index.ts"
],
"ngx-bootstrap/modal": [
"src/modal/index.ts"
],
"ngx-bootstrap/pagination": [
"src/pagination/index.ts"
],
"ngx-bootstrap/popover": [
"src/popover/index.ts"
],
"ngx-bootstrap/positioning": [
"src/positioning/index.ts"
],
"ngx-bootstrap/progressbar": [
"src/progressbar/index.ts"
],
"ngx-bootstrap/rating": [
"src/rating/index.ts"
],
"ngx-bootstrap/sortable": [
"src/sortable/index.ts"
],
"ngx-bootstrap/tabs": [
"src/tabs/index.ts"
],
"ngx-bootstrap/timepicker": [
"src/timepicker/index.ts"
],
"ngx-bootstrap/tooltip": [
"src/tooltip/index.ts"
],
"ngx-bootstrap/typeahead": [
"src/typeahead/index.ts"
],
"ngx-bootstrap/utils": [
"src/utils/index.ts"
]
}
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
},
"exclude": [
"node_modules/!(ngx-bootstrap)",
"tmp"
]
}