forked from valor-software/ngx-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
75 lines (75 loc) · 3.63 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
{
"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,
"useDefineForClassFields": false,
"target": "es2017",
"module": "es2022",
"lib": ["es2022", "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"]
}