forked from COS301-SE-2023/Proper-Property
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
125 lines (125 loc) · 4.16 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
{
"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": {
"@properproperty/api/core/feature": [
"libs/api/core/feature/src/index.ts"
],
"@properproperty/api/listings/data-access": [
"libs/api/listings/data-access/src/index.ts"
],
"@properproperty/api/listings/feature": [
"libs/api/listings/feature/src/index.ts"
],
"@properproperty/api/listings/util": [
"libs/api/listings/util/src/index.ts"
],
"@properproperty/api/profile/data-access": [
"libs/api/profile/data-access/src/index.ts"
],
"@properproperty/api/profile/feature": [
"libs/api/profile/feature/src/index.ts"
],
"@properproperty/api/profile/util": [
"libs/api/profile/util/src/index.ts"
],
"@properproperty/app/admin/data-access": [
"libs/app/admin/data-access/src/index.ts"
],
"@properproperty/app/admin/feature": [
"libs/app/admin/feature/src/index.ts"
],
"@properproperty/app/admin/util": ["libs/app/admin/util/src/index.ts"],
"@properproperty/app/auth/data-access": [
"libs/app/auth/data-access/src/index.ts"
],
"@properproperty/app/auth/util": ["libs/app/auth/util/src/index.ts"],
"@properproperty/app/copyright/feature": [
"libs/app/copyright/feature/src/index.ts"
],
"@properproperty/app/core/feature": [
"libs/app/core/feature/src/index.ts"
],
"@properproperty/app/create-listing/feature": [
"libs/app/create-listing/feature/src/index.ts"
],
"@properproperty/app/footer/feature": [
"libs/app/footer/feature/src/index.ts"
],
"@properproperty/app/google-maps/data-access": [
"libs/app/google-maps/data-access/src/index.ts"
],
"@properproperty/app/google-maps/util": [
"libs/app/google-maps/util/src/index.ts"
],
"@properproperty/app/home/feature": [
"libs/app/home/feature/src/index.ts"
],
"@properproperty/app/listing/data-access": [
"libs/app/listing/data-access/src/index.ts"
],
"@properproperty/app/listing/feature": [
"libs/app/listing/feature/src/index.ts"
],
"@properproperty/app/listing/util": [
"libs/app/listing/util/src/index.ts"
],
"@properproperty/app/loading/feature": [
"libs/app/loading/feature/src/index.ts"
],
"@properproperty/app/login/feature": [
"libs/app/login/feature/src/index.ts"
],
"@properproperty/app/my-listings/feature": [
"libs/app/my-listings/feature/src/index.ts"
],
"@properproperty/app/open-ai/data-access": [
"libs/app/open-ai/data-access/src/index.ts"
],
"@properproperty/app/profile/data-access": [
"libs/app/profile/data-access/src/index.ts"
],
"@properproperty/app/profile/feature": [
"libs/app/profile/feature/src/index.ts"
],
"@properproperty/app/profile/util": [
"libs/app/profile/util/src/index.ts"
],
"@properproperty/app/quality-scoring/data-access": [
"libs/app/quality-scoring/data-access/src/index.ts"
],
"@properproperty/app/quality-scoring/util": [
"libs/app/quality-scoring/util/src/index.ts"
],
"@properproperty/app/register/feature": [
"libs/app/register/feature/src/index.ts"
],
"@properproperty/app/saved-listings/feature": [
"libs/app/saved-listings/feature/src/index.ts"
],
"@properproperty/app/search/feature": [
"libs/app/search/feature/src/index.ts"
],
"@properproperty/app/settings/feature": [
"libs/app/settings/feature/src/index.ts"
],
"@properproperty/app/version/feature": [
"libs/app/version/feature/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}