-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnest-cli.json
60 lines (60 loc) · 1.53 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
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/hotel-example/src",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/hotel-example/tsconfig.app.json"
},
"projects": {
"cavia-js": {
"type": "library",
"root": "lib/cavia-js",
"entryFile": "../../index",
"sourceRoot": "lib/cavia-js/src",
"compilerOptions": {
"tsConfigPath": "lib/cavia-js/tsconfig.lib.json"
}
},
"hotel-example": {
"type": "application",
"root": "apps/hotel-example",
"entryFile": "main",
"sourceRoot": "apps/hotel-example/src",
"compilerOptions": {
"tsConfigPath": "apps/hotel-example/tsconfig.app.json",
"assets": [
"**/*.proto"
],
"watchAssets": true
}
},
"cli": {
"type": "application",
"root": "apps/hotel-example",
"entryFile": "cli",
"sourceRoot": "apps/hotel-example/src",
"compilerOptions": {
"tsConfigPath": "apps/hotel-example/tsconfig.app.json",
"assets": [
"**/*.proto"
],
"watchAssets": true
}
},
"hotel-example-mcsv": {
"type": "application",
"root": "apps/hotel-example",
"entryFile": "main-as-microservice",
"sourceRoot": "apps/hotel-example/src",
"compilerOptions": {
"tsConfigPath": "apps/hotel-example/tsconfig.app.json",
"assets": [
"**/*.proto"
],
"watchAssets": true
}
}
},
"monorepo": true,
"root": "apps/hotel-example"
}