-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
111 lines (111 loc) · 3.99 KB
/
tsconfig.base.json
File metadata and controls
111 lines (111 loc) · 3.99 KB
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@the-au-pair/add-child/feature": ["libs/add-child/feature/src/index.ts"],
"@the-au-pair/admin-console/feature": [
"libs/admin-console/feature/src/index.ts"
],
"@the-au-pair/admin-reports/feature": [
"libs/admin-reports/feature/src/index.ts"
],
"@the-au-pair/au-pair-cost/feature": [
"libs/au-pair-cost/feature/src/index.ts"
],
"@the-au-pair/au-pair-dashboard/feature": [
"libs/au-pair-dashboard/feature/src/index.ts"
],
"@the-au-pair/au-pair-profile/feature": [
"libs/au-pair-profile/feature/src/index.ts"
],
"@the-au-pair/au-pair-schedule/feature": [
"libs/au-pair-schedule/feature/src/index.ts"
],
"@the-au-pair/children-dashboard/feature": [
"libs/children-dashboard/feature/src/index.ts"
],
"@the-au-pair/edit-au-pair-profile/feature": [
"libs/edit-au-pair-profile/feature/src/index.ts"
],
"@the-au-pair/edit-child/feature": [
"libs/edit-child/feature/src/index.ts"
],
"@the-au-pair/edit-parent-profile/feature": [
"libs/edit-parent-profile/feature/src/index.ts"
],
"@the-au-pair/explore/feature": ["libs/explore/feature/src/index.ts"],
"@the-au-pair/forgot-password/feature": [
"libs/forgot-password/feature/src/index.ts"
],
"@the-au-pair/hire-requests/feature": [
"libs/hire-requests/feature/src/index.ts"
],
"@the-au-pair/landing-page/feature": [
"libs/landing-page/feature/src/index.ts"
],
"@the-au-pair/job-summary-au-pair-view/feature": [
"libs/job-summary-au-pair-view/feature/src/index.ts"
],
"@the-au-pair/job-summary-parent-view/feature": [
"libs/job-summary-parent-view/feature/src/index.ts"
],
"@the-au-pair/login/feature": ["libs/login/feature/src/index.ts"],
"@the-au-pair/notifications-feature": [
"libs/notifications/feature/src/index.ts"
],
"@the-au-pair/parent-add-activity/feature": [
"libs/parent-add-activity/feature/src/index.ts"
],
"@the-au-pair/parent-dashboard/feature": [
"libs/parent-dashboard/feature/src/index.ts"
],
"@the-au-pair/parent-edit-activity/feature": [
"libs/parent-edit-activity/feature/src/index.ts"
],
"@the-au-pair/parent-profile/feature": [
"libs/parent-profile/feature/src/index.ts"
],
"@the-au-pair/parent-view-activity/feature": [
"libs/parent-view-activity/feature/src/index.ts"
],
"@the-au-pair/register/feature": ["libs/register/feature/src/index.ts"],
"@the-au-pair/schedule/feature": ["libs/schedule/feature/src/index.ts"],
"@the-au-pair/shared/components/input-field": [
"libs/shared/components/input-field/src/index.ts"
],
"@the-au-pair/shared/components/location-field": [
"libs/shared/components/location-field/src/index.ts"
],
"@the-au-pair/shared/components/long-field": [
"libs/shared/components/long-field/src/index.ts"
],
"@the-au-pair/shared/components/navbar": [
"libs/shared/components/navbar/src/index.ts"
],
"@the-au-pair/shared/components/password-field": [
"libs/shared/components/password-field/src/index.ts"
],
"@the-au-pair/shared/services/auth": [
"libs/shared/services/auth/src/index.ts"
],
"@the-au-pair/shell/feature": ["libs/shell/feature/src/index.ts"],
"@the-au-pair/track-au-pair/feature": [
"libs/track-au-pair/feature/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}