-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnest-cli.json
More file actions
48 lines (48 loc) · 1.28 KB
/
nest-cli.json
File metadata and controls
48 lines (48 loc) · 1.28 KB
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
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/microsservices/src",
"monorepo": true,
"root": "apps/microsservices",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/microsservices/tsconfig.app.json"
},
"projects": {
"microsservices": {
"type": "application",
"root": "apps/microsservices",
"entryFile": "main",
"sourceRoot": "apps/microsservices/src",
"compilerOptions": {
"tsConfigPath": "apps/microsservices/tsconfig.app.json"
}
},
"ms-a-stock": {
"type": "application",
"root": "apps/ms-a-stock",
"entryFile": "main",
"sourceRoot": "apps/ms-a-stock/src",
"compilerOptions": {
"tsConfigPath": "apps/ms-a-stock/tsconfig.app.json"
}
},
"ms-b-delivery": {
"type": "application",
"root": "apps/ms-b-delivery",
"entryFile": "main",
"sourceRoot": "apps/ms-b-delivery/src",
"compilerOptions": {
"tsConfigPath": "apps/ms-b-delivery/tsconfig.app.json"
}
},
"ms-c-order": {
"type": "application",
"root": "apps/ms-c-order",
"entryFile": "main",
"sourceRoot": "apps/ms-c-order/src",
"compilerOptions": {
"tsConfigPath": "apps/ms-c-order/tsconfig.app.json"
}
}
}
}