-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest-cli.json
101 lines (101 loc) · 2.55 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"$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"
}
},
"truck": {
"type": "application",
"root": "apps/truck",
"entryFile": "main",
"sourceRoot": "apps/truck/src",
"compilerOptions": {
"tsConfigPath": "apps/truck/tsconfig.app.json",
"assets": [
{
"include": "./.env.yml",
"outDir": "./dist/apps/truck"
}
]
}
},
"models": {
"type": "library",
"root": "libs/models",
"entryFile": "index",
"sourceRoot": "libs/models/src",
"compilerOptions": {
"tsConfigPath": "libs/models/tsconfig.lib.json"
}
},
"common-modules": {
"type": "library",
"root": "libs/common-modules",
"entryFile": "index",
"sourceRoot": "libs/common-modules/src",
"compilerOptions": {
"tsConfigPath": "libs/common-modules/tsconfig.lib.json"
}
},
"container": {
"type": "application",
"root": "apps/container",
"entryFile": "main",
"sourceRoot": "apps/container/src",
"compilerOptions": {
"tsConfigPath": "apps/container/tsconfig.app.json"
}
},
"job": {
"type": "application",
"root": "apps/job",
"entryFile": "main",
"sourceRoot": "apps/job/src",
"compilerOptions": {
"tsConfigPath": "apps/job/tsconfig.app.json"
}
},
"constants": {
"type": "library",
"root": "libs/constants",
"entryFile": "index",
"sourceRoot": "libs/constants/src",
"compilerOptions": {
"tsConfigPath": "libs/constants/tsconfig.lib.json"
}
},
"dto": {
"type": "library",
"root": "libs/dto",
"entryFile": "index",
"sourceRoot": "libs/dto/src",
"compilerOptions": {
"tsConfigPath": "libs/dto/tsconfig.lib.json"
}
},
"utils": {
"type": "library",
"root": "libs/utils",
"entryFile": "index",
"sourceRoot": "libs/utils/src",
"compilerOptions": {
"tsConfigPath": "libs/utils/tsconfig.lib.json"
}
}
}
}