-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest-cli.json
41 lines (41 loc) · 1.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
{
"$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"
}
},
"simple-users": {
"type": "application",
"root": "apps/simple-users",
"entryFile": "main",
"sourceRoot": "apps/simple-users/src",
"compilerOptions": {
"tsConfigPath": "apps/simple-users/tsconfig.app.json"
}
},
"simple-posts": {
"type": "application",
"root": "apps/simple-posts",
"entryFile": "main",
"sourceRoot": "apps/simple-posts/src",
"compilerOptions": {
"tsConfigPath": "apps/simple-posts/tsconfig.app.json"
}
}
}
}