-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
90 lines (90 loc) · 3.43 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
{
"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": {
"@cloudy/api/core/feature": ["libs/api/core/feature/src/index.ts"],
"@cloudy/api/feature-auth/data-access": [
"libs/api/feature-auth/data-access/src/index.ts"
],
"@cloudy/api/feature-auth/feature": [
"libs/api/feature-auth/feature/src/index.ts"
],
"@cloudy/api/feature-auth/utils": [
"libs/api/feature-auth/utils/src/index.ts"
],
"@cloudy/api/feature-user": ["libs/api/feature-user/src/index.ts"],
"@cloudy/client-core-feature": ["libs/client/core/feature/src/index.ts"],
"@cloudy/client-feature-home-data-access": [
"libs/client/feature-home/data-access/src/index.ts"
],
"@cloudy/client-feature-home-utils": [
"libs/client/feature-home/utils/src/index.ts"
],
"@cloudy/client/feature-account/feature": [
"libs/client/feature-account/feature/src/index.ts"
],
"@cloudy/client/feature-auth": ["libs/client/feature-auth/src/index.ts"],
"@cloudy/client/feature-auth/data-access": [
"libs/client/feature-auth/data-access/src/index.ts"
],
"@cloudy/client/feature-auth/feature": [
"libs/client/feature-auth/feature/src/index.ts"
],
"@cloudy/client/feature-auth/shared/utils": [
"libs/client/feature-auth/shared/utils/src/index.ts"
],
"@cloudy/client/feature-dashboard": [
"libs/client/feature-dashboard/src/index.ts"
],
"@cloudy/client/feature-dashboard/data-access": [
"libs/client/feature-dashboard/data-access/src/index.ts"
],
"@cloudy/client/feature-dashboard/feature": [
"libs/client/feature-dashboard/feature/src/index.ts"
],
"@cloudy/client/feature-home/feature": [
"libs/client/feature-home/feature/src/index.ts"
],
"@cloudy/client/feature-home/shared/data-access": [
"libs/client/feature-home/shared/data-access/src/index.ts"
],
"@cloudy/client/feature-home/shared/ui": [
"libs/client/feature-home/shared/ui/src/index.ts"
],
"@cloudy/client/feature-home/shared/utils": [
"libs/client/feature-home/shared/utils/src/index.ts"
],
"@cloudy/client/feature-inventory/data-access": [
"libs/client/feature-inventory/data-access/src/index.ts"
],
"@cloudy/client/feature-inventory/feature": [
"libs/client/feature-inventory/feature/src/index.ts"
],
"@cloudy/client/shared": ["libs/client/shared/src/index.ts"],
"@cloudy/commons/file-displayer": [
"libs/commons/file-displayer/src/index.ts"
],
"@cloudy/environment": ["libs/environment/src/index.ts"],
"@cloudy/shared/api": ["libs/shared/api/src/index.ts"],
"@cloudy/shared/data-access": ["libs/shared/data-access/src/index.ts"],
"@cloudy/shared/i18n": ["libs/shared/i18n/src/index.ts"],
"@cloudy/shared/ui": ["libs/shared/ui/src/index.ts"],
"@cloudy/shared/utils": ["libs/shared/utils/src/index.ts"],
"@env/*": ["apps/client/src/environments/*"]
}
},
"exclude": ["node_modules", "tmp"]
}