-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnest-cli.json
202 lines (202 loc) · 5.5 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
195
196
197
198
199
200
201
202
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/account-api/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/account-api/tsconfig.app.json",
"plugins": [
{
"name": "@nestjs/swagger",
"options": {
"introspectComments": true
}
}
]
},
"monorepo": true,
"root": "apps/account-api",
"projects": {
"account-api": {
"type": "application",
"root": "apps/account-api",
"entryFile": "main",
"sourceRoot": "apps/account-api/src",
"compilerOptions": {
"tsConfigPath": "apps/account-api/tsconfig.app.json"
}
},
"account-worker": {
"type": "application",
"root": "apps/account-worker",
"entryFile": "main",
"sourceRoot": "apps/account-worker/src",
"compilerOptions": {
"tsConfigPath": "apps/account-worker/tsconfig.app.json"
}
},
"account-lib": {
"type": "library",
"root": "libs/account-lib",
"entryFile": "index",
"sourceRoot": "libs/account-lib/src",
"compilerOptions": {
"tsConfigPath": "libs/account-lib/tsconfig.lib.json"
}
},
"content-publishing-api": {
"type": "application",
"root": "apps/content-publishing-api",
"entryFile": "main",
"sourceRoot": "apps/content-publishing-api/src",
"compilerOptions": {
"tsConfigPath": "apps/content-publishing-api/tsconfig.app.json"
}
},
"content-publishing-lib": {
"type": "library",
"root": "libs/content-publishing-lib",
"entryFile": "index",
"sourceRoot": "libs/content-publishing-lib/src",
"compilerOptions": {
"tsConfigPath": "libs/content-publishing-lib/tsconfig.lib.json"
}
},
"content-publishing-worker": {
"type": "application",
"root": "apps/content-publishing-worker",
"entryFile": "main",
"sourceRoot": "apps/content-publishing-worker/src",
"compilerOptions": {
"tsConfigPath": "apps/content-publishing-worker/tsconfig.app.json"
}
},
"content-watcher": {
"type": "application",
"root": "apps/content-watcher",
"entryFile": "main",
"sourceRoot": "apps/content-watcher/src",
"compilerOptions": {
"tsConfigPath": "apps/content-watcher/tsconfig.app.json"
}
},
"content-watcher-lib": {
"type": "library",
"root": "libs/content-watcher-lib",
"entryFile": "index",
"sourceRoot": "libs/content-watcher-lib/src",
"compilerOptions": {
"tsConfigPath": "libs/content-watcher-lib/tsconfig.lib.json"
}
},
"graph-api": {
"type": "application",
"root": "apps/graph-api",
"entryFile": "main",
"sourceRoot": "apps/graph-api/src",
"compilerOptions": {
"tsConfigPath": "apps/graph-api/tsconfig.app.json"
}
},
"graph-lib": {
"type": "library",
"root": "libs/graph-lib",
"entryFile": "index",
"sourceRoot": "libs/graph-lib/src",
"compilerOptions": {
"tsConfigPath": "libs/graph-lib/tsconfig.lib.json"
}
},
"graph-worker": {
"type": "application",
"root": "apps/graph-worker",
"entryFile": "main",
"sourceRoot": "apps/graph-worker/src",
"compilerOptions": {
"tsConfigPath": "apps/graph-worker/tsconfig.app.json"
}
},
"types": {
"type": "library",
"root": "libs/types",
"entryFile": "index",
"sourceRoot": "libs/types/src",
"compilerOptions": {
"tsConfigPath": "libs/types/tsconfig.lib.json"
}
},
"utils": {
"type": "library",
"root": "libs/utils",
"entryFile": "index",
"sourceRoot": "libs/utils/src",
"compilerOptions": {
"tsConfigPath": "libs/utils/tsconfig.lib.json"
}
},
"config": {
"type": "library",
"root": "libs/config",
"entryFile": "index",
"sourceRoot": "libs/config/src",
"compilerOptions": {
"tsConfigPath": "libs/config/tsconfig.lib.json"
}
},
"consumer": {
"type": "library",
"root": "libs/consumer",
"entryFile": "index",
"sourceRoot": "libs/consumer/src",
"compilerOptions": {
"tsConfigPath": "libs/consumer/tsconfig.lib.json"
}
},
"storage": {
"type": "library",
"root": "libs/storage",
"entryFile": "index",
"sourceRoot": "libs/storage/src",
"compilerOptions": {
"tsConfigPath": "libs/storage/tsconfig.lib.json"
}
},
"queues": {
"type": "library",
"root": "libs/queue",
"entryFile": "index",
"sourceRoot": "libs/queue/src",
"compilerOptions": {
"tsConfigPath": "libs/queue/tsconfig.lib.json"
}
},
"cache": {
"type": "library",
"root": "libs/cache",
"entryFile": "index",
"sourceRoot": "libs/cache/src",
"compilerOptions": {
"tsConfigPath": "libs/cache/tsconfig.lib.json"
}
},
"blockchain": {
"type": "library",
"root": "libs/blockchain",
"entryFile": "index",
"sourceRoot": "libs/blockchain/src",
"compilerOptions": {
"tsConfigPath": "libs/blockchain/tsconfig.lib.json"
}
},
"openapi": {
"type": "library",
"root": "libs/openapi",
"entryFile": "index",
"sourceRoot": "libs/openapi/src",
"compilerOptions": {
"tsConfigPath": "libs/openapi/tsconfig.lib.json"
}
}
}
}