-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.base.json
82 lines (82 loc) · 2.72 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"useUnknownInCatchVariables": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@pawdopt/backend/shell/api/feature": [
"libs/backend/shell/api/feature/src/index.ts"
],
"@pawdopt/config": ["libs/config/index.ts"],
"@pawdopt/mobile/adddog/feature": [
"libs/mobile/adddog/feature/src/index.ts"
],
"@pawdopt/mobile/addorg/feature": [
"libs/mobile/addorg/feature/src/index.ts"
],
"@pawdopt/mobile/adoptionprocess/feature": [
"libs/mobile/adoptionprocess/feature/src/index.ts"
],
"@pawdopt/mobile/appointmentpage/feature": [
"libs/mobile/appointmentpage/feature/src/index.ts"
],
"@pawdopt/mobile/chat/feature": ["libs/mobile/chat/feature/src/index.ts"],
"@pawdopt/mobile/chatlist/feature": [
"libs/mobile/chatlist/feature/src/index.ts"
],
"@pawdopt/mobile/dashboard/feature": [
"libs/mobile/dashboard/feature/src/index.ts"
],
"@pawdopt/mobile/login/feature": [
"libs/mobile/login/feature/src/index.ts"
],
"@pawdopt/mobile/orgprofile/feature": [
"libs/mobile/orgprofile/feature/src/index.ts"
],
"@pawdopt/mobile/orgsettings/feature": [
"libs/mobile/orgsettings/feature/src/index.ts"
],
"@pawdopt/mobile/owneddogs/feature": [
"libs/mobile/owneddogs/feature/src/index.ts"
],
"@pawdopt/mobile/preferences/feature": [
"libs/mobile/preferences/feature/src/index.ts"
],
"@pawdopt/mobile/signup/feature": [
"libs/mobile/signup/feature/src/index.ts"
],
"@pawdopt/mobile/updateorremovedog/feature": [
"libs/mobile/updateorremovedog/feature/src/index.ts"
],
"@pawdopt/mobile/uploaddoc/feature": [
"libs/mobile/uploaddoc/feature/src/index.ts"
],
"@pawdopt/mobile/useradoption/feature": [
"libs/mobile/useradoption/feature/src/index.ts"
],
"@pawdopt/mobile/userinfo/feature": [
"libs/mobile/userinfo/feature/src/index.ts"
],
"@pawdopt/mobile/userlikes/feature": [
"libs/mobile/userlikes/feature/src/index.ts"
],
"@pawdopt/mobile/userprofile/feature": [
"libs/mobile/userprofile/feature/src/index.ts"
],
"@pawdopt/shared/ml/feature": ["libs/shared/ml/feature/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}