-
Notifications
You must be signed in to change notification settings - Fork 17
/
nest-cli.json
165 lines (165 loc) · 4.11 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/server",
"monorepo": true,
"root": "apps/server",
"compilerOptions": {
"webpack": false,
"tsConfigPath": "apps/server/tsconfig.app.json",
"plugins": [
{
"name": "@nestjs/swagger",
"options": {
"classValidatorShim": true,
"introspectComments": true
}
}
],
"assets": ["static-assets/*"]
},
"projects": {
"server": {
"type": "application",
"root": "apps/server",
"entryFile": "apps/server.app",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
},
"management": {
"type": "application",
"root": "apps/server",
"entryFile": "apps/management.app",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
},
"console": {
"type": "application",
"root": "apps/server",
"entryFile": "console/console",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
},
"deletion-console": {
"type": "application",
"root": "apps/server",
"entryFile": "apps/deletion-console.app",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
},
"idp-console": {
"type": "application",
"root": "apps/server",
"entryFile": "apps/idp-console.app",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
},
"tldraw-console": {
"type": "application",
"root": "apps/server",
"entryFile": "apps/tldraw-console.app",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
},
"files-storage": {
"type": "application",
"root": "apps/server",
"entryFile": "apps/files-storage.app",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
},
"files-storage-amqp": {
"type": "application",
"root": "apps/server",
"entryFile": "apps/files-storage-consumer.app",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
},
"preview-generator-amqp": {
"type": "application",
"root": "apps/server",
"entryFile": "apps/preview-generator-consumer.app",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
},
"fwu-learning-contents": {
"type": "application",
"root": "apps/server",
"entryFile": "apps/fwu-learning-contents.app",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
},
"h5p-editor": {
"type": "application",
"root": "apps/server",
"entryFile": "apps/h5p-editor.app",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
},
"h5p-library-management": {
"type": "application",
"root": "apps/server",
"entryFile": "apps/h5p-library-management.app",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
},
"admin-api-server": {
"type": "application",
"root": "apps/server",
"entryFile": "apps/admin-api-server.app",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
},
"tldraw": {
"type": "application",
"root": "apps/server",
"entryFile": "apps/tldraw.app",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
},
"common-cartridge": {
"type": "application",
"root": "apps/server",
"entryFile": "apps/common-cartridge.app",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
},
"board-collaboration": {
"type": "application",
"root": "apps/server",
"entryFile": "apps/board-collaboration.app",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
}
}
}