-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest-cli.json
194 lines (194 loc) · 5.06 KB
/
nest-cli.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/gateway/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/gateway/tsconfig.app.json"
},
"monorepo": true,
"root": "apps/gateway",
"projects": {
"gateway": {
"type": "application",
"root": "apps/gateway",
"entryFile": "main",
"sourceRoot": "apps/gateway/src",
"compilerOptions": {
"tsConfigPath": "apps/gateway/tsconfig.app.json"
}
},
"auth": {
"type": "application",
"root": "apps/auth",
"entryFile": "main",
"sourceRoot": "apps/auth/src",
"compilerOptions": {
"tsConfigPath": "apps/auth/tsconfig.app.json"
}
},
"prisma": {
"type": "library",
"root": "libs/prisma",
"entryFile": "index",
"sourceRoot": "libs/prisma/src",
"compilerOptions": {
"tsConfigPath": "libs/prisma/tsconfig.lib.json"
}
},
"decorators": {
"type": "library",
"root": "libs/decorators",
"entryFile": "index",
"sourceRoot": "libs/decorators/src",
"compilerOptions": {
"tsConfigPath": "libs/decorators/tsconfig.lib.json"
}
},
"interceptors": {
"type": "library",
"root": "libs/interceptors",
"entryFile": "index",
"sourceRoot": "libs/interceptors/src",
"compilerOptions": {
"tsConfigPath": "libs/interceptors/tsconfig.lib.json"
}
},
"filters": {
"type": "library",
"root": "libs/filters",
"entryFile": "index",
"sourceRoot": "libs/filters/src",
"compilerOptions": {
"tsConfigPath": "libs/filters/tsconfig.lib.json"
}
},
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
},
"logger": {
"type": "library",
"root": "libs/logger",
"entryFile": "index",
"sourceRoot": "libs/logger/src",
"compilerOptions": {
"tsConfigPath": "libs/logger/tsconfig.lib.json"
}
},
"config": {
"type": "library",
"root": "libs/config",
"entryFile": "index",
"sourceRoot": "libs/config/src",
"compilerOptions": {
"tsConfigPath": "libs/config/tsconfig.lib.json"
}
},
"scheduler": {
"type": "library",
"root": "libs/scheduler",
"entryFile": "index",
"sourceRoot": "libs/scheduler/src",
"compilerOptions": {
"tsConfigPath": "libs/scheduler/tsconfig.lib.json"
}
},
"middlewares": {
"type": "library",
"root": "libs/middlewares",
"entryFile": "index",
"sourceRoot": "libs/middlewares/src",
"compilerOptions": {
"tsConfigPath": "libs/middlewares/tsconfig.lib.json"
}
},
"health": {
"type": "library",
"root": "libs/health",
"entryFile": "index",
"sourceRoot": "libs/health/src",
"compilerOptions": {
"tsConfigPath": "libs/health/tsconfig.lib.json"
}
},
"audit.logger": {
"type": "library",
"root": "libs/audit.logger",
"entryFile": "index",
"sourceRoot": "libs/audit.logger/src",
"compilerOptions": {
"tsConfigPath": "libs/audit.logger/tsconfig.lib.json"
}
},
"errors": {
"type": "library",
"root": "libs/errors",
"entryFile": "index",
"sourceRoot": "libs/errors/src",
"compilerOptions": {
"tsConfigPath": "libs/errors/tsconfig.lib.json"
}
},
"service.registry": {
"type": "library",
"root": "libs/service.registry",
"entryFile": "index",
"sourceRoot": "libs/service.registry/src",
"compilerOptions": {
"tsConfigPath": "libs/service.registry/tsconfig.lib.json"
}
},
"metrics": {
"type": "library",
"root": "libs/metrics",
"entryFile": "index",
"sourceRoot": "libs/metrics/src",
"compilerOptions": {
"tsConfigPath": "libs/metrics/tsconfig.lib.json"
}
},
"dtos": {
"type": "library",
"root": "libs/dtos",
"entryFile": "index",
"sourceRoot": "libs/dtos/src",
"compilerOptions": {
"tsConfigPath": "libs/dtos/tsconfig.lib.json"
}
},
"guards": {
"type": "library",
"root": "libs/guards",
"entryFile": "index",
"sourceRoot": "libs/guards/src",
"compilerOptions": {
"tsConfigPath": "libs/guards/tsconfig.lib.json"
}
},
"rate.limiter": {
"type": "library",
"root": "libs/rate.limiter",
"entryFile": "index",
"sourceRoot": "libs/rate.limiter/src",
"compilerOptions": {
"tsConfigPath": "libs/rate.limiter/tsconfig.lib.json"
}
},
"redis": {
"type": "library",
"root": "libs/redis",
"entryFile": "index",
"sourceRoot": "libs/redis/src",
"compilerOptions": {
"tsConfigPath": "libs/redis/tsconfig.lib.json"
}
}
}
}