-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
124 lines (124 loc) · 2.52 KB
/
tsconfig.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
{
"compilerOptions": {
"types": [
"node"
],
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"resolveJsonModule": true,
"target": "es2018",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": false,
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"paths": {
"@libs/constants": [
"libs/constants/src"
],
"@libs/constants/*": [
"libs/constants/src/*"
],
"@libs/logger": [
"libs/logger/src"
],
"@libs/logger/*": [
"libs/logger/src/*"
],
"@libs/auth": [
"libs/auth/src"
],
"@libs/auth/*": [
"libs/auth/src/*"
],
"@libs/entities": [
"libs/entities/src"
],
"@libs/entities/*": [
"libs/entities/src/*"
],
"@libs/dtos": [
"libs/dtos/src"
],
"@libs/dtos/*": [
"libs/dtos/src/*"
],
"@libs/exceptions": [
"libs/exceptions/src"
],
"@libs/exceptions/*": [
"libs/exceptions/src/*"
],
"@libs/files": [
"libs/files/src"
],
"@libs/files/*": [
"libs/files/src/*"
],
"@libs/decorators": [
"libs/decorators/src"
],
"@libs/decorators/*": [
"libs/decorators/src/*"
],
"@libs/chats": [
"libs/chats/src"
],
"@libs/chats/*": [
"libs/chats/src/*"
],
"@libs/mail-service": [
"libs/mail-service/src"
],
"@libs/mail-service/*": [
"libs/mail-service/src/*"
],
"@libs/web-push": [
"libs/web-push/src"
],
"@libs/web-push/*": [
"libs/web-push/src/*"
],
"@libs/config": [
"libs/config/src"
],
"@libs/config/*": [
"libs/config/src/*"
],
"@apps/aggregator": [
"apps/aggregator/src"
],
"@apps/aggregator/*": [
"apps/aggregator/src/*"
],
"@apps/manager": [
"apps/manager/src"
],
"@apps/manager/*": [
"apps/manager/src/*"
],
"@apps/api": [
"apps/api/src"
],
"@apps/api/*": [
"apps/api/src/*"
],
"@libs/helpers": [
"libs/helpers/src"
],
"@libs/helpers/*": [
"libs/helpers/src/*"
]
}
},
"exclude": [
"node_modules",
"dist"
]
}