-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest-cli.json
75 lines (75 loc) · 1.89 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
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/commerce/src",
"monorepo": true,
"root": "apps/commerce",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/commerce/tsconfig.app.json"
},
"projects": {
"commerce": {
"type": "application",
"root": "apps/commerce",
"entryFile": "main",
"sourceRoot": "apps/commerce/src",
"compilerOptions": {
"tsConfigPath": "apps/commerce/tsconfig.app.json"
}
},
"users": {
"type": "application",
"root": "apps/users",
"entryFile": "main",
"sourceRoot": "apps/users/src",
"compilerOptions": {
"tsConfigPath": "apps/users/tsconfig.app.json"
}
},
"products": {
"type": "application",
"root": "apps/products",
"entryFile": "main",
"sourceRoot": "apps/products/src",
"compilerOptions": {
"tsConfigPath": "apps/products/tsconfig.app.json"
}
},
"orders": {
"type": "application",
"root": "apps/orders",
"entryFile": "main",
"sourceRoot": "apps/orders/src",
"compilerOptions": {
"tsConfigPath": "apps/orders/tsconfig.app.json"
}
},
"gateway": {
"type": "application",
"root": "apps/gateway",
"entryFile": "main",
"sourceRoot": "apps/gateway/src",
"compilerOptions": {
"tsConfigPath": "apps/gateway/tsconfig.app.json"
}
},
"shared": {
"type": "library",
"root": "libs/shared",
"entryFile": "index",
"sourceRoot": "libs/shared/src",
"compilerOptions": {
"tsConfigPath": "libs/shared/tsconfig.lib.json"
}
},
"payments": {
"type": "application",
"root": "apps/payments",
"entryFile": "main",
"sourceRoot": "apps/payments/src",
"compilerOptions": {
"tsConfigPath": "apps/payments/tsconfig.app.json"
}
}
}
}