forked from fdorantesm/nest-microservices-with-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest-cli.json
39 lines (39 loc) · 946 Bytes
/
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
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/gateway/src",
"monorepo": true,
"root": "apps/gateway",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/gateway/tsconfig.app.json"
},
"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"
}
},
"core": {
"type": "application",
"root": "apps/core",
"entryFile": "main",
"sourceRoot": "apps/core/src",
"compilerOptions": {
"tsConfigPath": "apps/core/tsconfig.app.json"
}
}
}
}