-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest-cli.json
185 lines (185 loc) · 4.66 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"generateOptions": {
"spec": false
},
"sourceRoot": "apps/gateway/src",
"compilerOptions": {
"watchAssets": true,
"assets": ["/**/*.crt","/**/*.pem"],
"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"
}
},
"user": {
"type": "application",
"root": "apps/user",
"entryFile": "main",
"sourceRoot": "apps/user/src",
"compilerOptions": {
"watchAssets": true,
"assets": ["/**/*.crt","/**/*.pem"],
"tsConfigPath": "apps/user/tsconfig.app.json"
}
},
"email": {
"type": "library",
"root": "libs/email",
"entryFile": "index",
"sourceRoot": "libs/email/src",
"compilerOptions": {
"tsConfigPath": "libs/email/tsconfig.lib.json"
}
},
"redis": {
"type": "library",
"root": "libs/redis",
"entryFile": "index",
"sourceRoot": "libs/redis/src",
"compilerOptions": {
"tsConfigPath": "libs/redis/tsconfig.lib.json"
}
},
"db": {
"type": "library",
"root": "libs/db",
"entryFile": "index",
"sourceRoot": "libs/db/src",
"compilerOptions": {
"tsConfigPath": "libs/db/tsconfig.lib.json"
}
},
"config": {
"type": "library",
"root": "libs/config",
"entryFile": "index",
"sourceRoot": "libs/config/src",
"compilerOptions": {
"tsConfigPath": "libs/config/tsconfig.lib.json"
}
},
"etcd": {
"type": "library",
"root": "libs/etcd",
"entryFile": "index",
"sourceRoot": "libs/etcd/src",
"compilerOptions": {
"tsConfigPath": "libs/etcd/tsconfig.lib.json"
}
},
"jwt": {
"type": "library",
"root": "libs/jwt",
"entryFile": "index",
"sourceRoot": "libs/jwt/src",
"compilerOptions": {
"tsConfigPath": "libs/jwt/tsconfig.lib.json"
}
},
"winston": {
"type": "library",
"root": "libs/winston",
"entryFile": "index",
"sourceRoot": "libs/winston/src",
"compilerOptions": {
"tsConfigPath": "libs/winston/tsconfig.lib.json"
}
},
"rabbitmq": {
"type": "library",
"root": "libs/rabbitmq",
"entryFile": "index",
"sourceRoot": "libs/rabbitmq/src",
"compilerOptions": {
"tsConfigPath": "libs/rabbitmq/tsconfig.lib.json"
}
},
"configuration": {
"type": "application",
"root": "apps/configuration",
"entryFile": "main",
"sourceRoot": "apps/configuration/src",
"compilerOptions": {
"tsConfigPath": "apps/configuration/tsconfig.app.json"
}
},
"sms": {
"type": "library",
"root": "libs/sms",
"entryFile": "index",
"sourceRoot": "libs/sms/src",
"compilerOptions": {
"tsConfigPath": "libs/sms/tsconfig.lib.json"
}
},
"genius": {
"type": "application",
"root": "apps/genius",
"entryFile": "main",
"sourceRoot": "apps/genius/src",
"compilerOptions": {
"watchAssets": true,
"assets": ["/**/*.crt","/**/*.pem"],
"tsConfigPath": "apps/genius/tsconfig.app.json"
}
},
"boss": {
"type": "application",
"root": "apps/boss",
"entryFile": "main",
"sourceRoot": "apps/boss/src",
"compilerOptions": {
"tsConfigPath": "apps/boss/tsconfig.app.json"
}
},
"im": {
"type": "library",
"root": "libs/im",
"entryFile": "index",
"sourceRoot": "libs/im/src",
"compilerOptions": {
"tsConfigPath": "libs/im/tsconfig.lib.json"
}
},
"admin": {
"type": "application",
"root": "apps/admin",
"entryFile": "main",
"sourceRoot": "apps/admin/src",
"compilerOptions": {
"tsConfigPath": "apps/admin/tsconfig.app.json"
}
},
"oss": {
"type": "library",
"root": "libs/oss",
"entryFile": "index",
"sourceRoot": "libs/oss/src",
"compilerOptions": {
"tsConfigPath": "libs/oss/tsconfig.lib.json"
}
},
"alipay": {
"type": "library",
"root": "libs/alipay",
"entryFile": "index",
"sourceRoot": "libs/alipay/src",
"compilerOptions": {
"tsConfigPath": "libs/alipay/tsconfig.lib.json"
}
}
}
}