-
Notifications
You must be signed in to change notification settings - Fork 44
/
tsconfig.base.json
45 lines (45 loc) · 2.18 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ESNext",
"module": "ESNext",
"lib": ["ES2022", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"forceConsistentCasingInFileNames": true,
"strict": true,
"paths": {
"@ng-doc/generated": ["ng-doc/docs/index.ts"],
"@ng-doc/generated/*": ["ng-doc/docs/*"],
"flowbite-angular": ["libs/flowbite-angular/common/index.ts"],
"flowbite-angular/accordion": ["libs/flowbite-angular/accordion/index.ts"],
"flowbite-angular/alert": ["libs/flowbite-angular/alert/index.ts"],
"flowbite-angular/badge": ["libs/flowbite-angular/badge/index.ts"],
"flowbite-angular/breadcrumb": ["libs/flowbite-angular/breadcrumb/index.ts"],
"flowbite-angular/button": ["libs/flowbite-angular/button/index.ts"],
"flowbite-angular/core": ["libs/flowbite-angular/core/index.ts"],
"flowbite-angular/dark-theme-toggle": ["libs/flowbite-angular/dark-theme-toggle/index.ts"],
"flowbite-angular/dropdown": ["libs/flowbite-angular/dropdown/index.ts"],
"flowbite-angular/icon": ["libs/flowbite-angular/icon/index.ts"],
"flowbite-angular/indicator": ["libs/flowbite-angular/indicator/index.ts"],
"flowbite-angular/modal": ["libs/flowbite-angular/modal/index.ts"],
"flowbite-angular/navbar": ["libs/flowbite-angular/navbar/index.ts"],
"flowbite-angular/router-link": ["libs/flowbite-angular/router-link/index.ts"],
"flowbite-angular/router-link-active": ["libs/flowbite-angular/router-link-active/index.ts"],
"flowbite-angular/sanitize-html": ["libs/flowbite-angular/sanitize-html/index.ts"],
"flowbite-angular/scroll-top": ["libs/flowbite-angular/scroll-top/index.ts"],
"flowbite-angular/sidebar": ["libs/flowbite-angular/sidebar/index.ts"],
"flowbite-angular/theme": ["libs/flowbite-angular/theme/index.ts"],
"flowbite-angular/utils": ["libs/flowbite-angular/utils/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}