-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnest-cli.json
More file actions
59 lines (59 loc) · 1.69 KB
/
nest-cli.json
File metadata and controls
59 lines (59 loc) · 1.69 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
49
50
51
52
53
54
55
56
57
58
59
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/ecommerce-api-gateway/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/ecommerce-api-gateway/tsconfig.app.json"
},
"monorepo": true,
"root": "apps/ecommerce-api-gateway",
"projects": {
"cart-service": {
"type": "application",
"root": "apps/cart-service",
"entryFile": "main",
"sourceRoot": "apps/cart-service/src",
"compilerOptions": {
"tsConfigPath": "apps/cart-service/tsconfig.app.json"
}
},
"ecommerce-api-gateway": {
"type": "application",
"root": "apps/ecommerce-api-gateway",
"entryFile": "main",
"sourceRoot": "apps/ecommerce-api-gateway/src",
"compilerOptions": {
"tsConfigPath": "apps/ecommerce-api-gateway/tsconfig.app.json"
}
},
"order-service": {
"type": "application",
"root": "apps/order-service",
"entryFile": "main",
"sourceRoot": "apps/order-service/src",
"compilerOptions": {
"tsConfigPath": "apps/order-service/tsconfig.app.json"
}
},
"product-service": {
"type": "application",
"root": "apps/product-service",
"entryFile": "main",
"sourceRoot": "apps/product-service/src",
"compilerOptions": {
"tsConfigPath": "apps/product-service/tsconfig.app.json"
}
},
"user-service": {
"type": "application",
"root": "apps/user-service",
"entryFile": "main",
"sourceRoot": "apps/user-service/src",
"compilerOptions": {
"tsConfigPath": "apps/user-service/tsconfig.app.json"
}
}
}
}