-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
97 lines (97 loc) · 3.68 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@home-improvement-hub/dashboard-data-access": [
"libs/dashboard/dashboard-data-access/src/index.ts"
],
"@home-improvement-hub/dashboard-models": [
"libs/dashboard/dashboard-models/src/index.ts"
],
"@home-improvement-hub/dashboard-ui": [
"libs/dashboard/dashboard-ui/src/index.ts"
],
"@home-improvement-hub/dashboard-utility": [
"libs/dashboard/dashboard-utility/src/index.ts"
],
"@home-improvement-hub/data": ["libs/data/src/index.ts"],
"@home-improvement-hub/feature-admin": [
"libs/user-management/features/admin/feature-admin/src/index.ts"
],
"@home-improvement-hub/feature-agent-profile": [
"libs/user-management/features/admin/feature-agent-profile/src/index.ts"
],
"@home-improvement-hub/feature-agents": [
"libs/feature-agents/src/index.ts"
],
"@home-improvement-hub/feature-analytics": [
"libs/dashboard/features/feature-analytics/src/index.ts"
],
"@home-improvement-hub/feature-bookings": [
"libs/feature-bookings/src/index.ts"
],
"@home-improvement-hub/feature-create-user": [
"libs/user-management/features/user-list/feature-create-user/src/index.ts"
],
"@home-improvement-hub/feature-edit-user": [
"libs/user-management/features/user-list/feature-edit-user/src/index.ts"
],
"@home-improvement-hub/feature-payment-history": [
"libs/user-management/features/admin/feature-payment-history/src/index.ts"
],
"@home-improvement-hub/feature-reviews": [
"libs/feature-reviews/src/index.ts"
],
"@home-improvement-hub/feature-services": [
"libs/feature-services/src/index.ts"
],
"@home-improvement-hub/feature-subscription-tracker": [
"libs/user-management/features/admin/feature-subscription-tracker/src/index.ts"
],
"@home-improvement-hub/feature-user-list-table": [
"libs/user-management/features/user-list/feature-user-list-table/src/index.ts"
],
"@home-improvement-hub/models": ["libs/models/src/index.ts"],
"@home-improvement-hub/routing": [
"libs/shared/shared-routing/src/index.ts"
],
"@home-improvement-hub/shadcn": ["libs/shadcn/src/index.ts"],
"@home-improvement-hub/shared-api": [
"libs/shared/shared-api/src/index.ts"
],
"@home-improvement-hub/shared-ui": ["libs/shared/shared-ui/src/index.ts"],
"@home-improvement-hub/state": ["libs/state/src/index.ts"],
"@home-improvement-hub/ui": [
"libs/user-management/user-management-ui/src/index.ts"
],
"@home-improvement-hub/user-management-data-access": [
"libs/user-management/user-management-data-access/src/index.ts"
],
"@home-improvement-hub/user-management-layout": [
"libs/user-management/user-management-layout/src/index.ts"
],
"@home-improvement-hub/user-management-models": [
"libs/user-management/user-management-models/src/index.ts"
],
"@home-improvement-hub/user-management-routing": [
"libs/user-management/user-management-routing/src/index.ts"
],
"@home-improvement-hub/utils": ["libs/utils/src/index.ts"]
},
"jsx": "react"
},
"exclude": ["node_modules", "tmp"]
}