-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest-cli.json
122 lines (122 loc) · 3.54 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/app-bff/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/cloud-learning-platform-server/tsconfig.app.json"
},
"monorepo": true,
"root": "apps/cloud-learning-platform-server",
"projects": {
"app-bff": {
"type": "application",
"root": "apps/app-bff",
"entryFile": "main",
"sourceRoot": "apps/app-bff/src",
"compilerOptions": {
"tsConfigPath": "apps/app-bff/tsconfig.app.json"
}
},
"backstage-bff": {
"type": "application",
"root": "apps/backstage-bff",
"entryFile": "main",
"sourceRoot": "apps/backstage-bff/src",
"compilerOptions": {
"tsConfigPath": "apps/backstage-bff/tsconfig.app.json"
}
},
"prisma": {
"type": "library",
"root": "libs/prisma",
"entryFile": "index",
"sourceRoot": "libs/prisma/src",
"compilerOptions": {
"tsConfigPath": "libs/prisma/tsconfig.lib.json"
}
},
"microservice-user": {
"type": "application",
"root": "apps/microservice-user",
"entryFile": "main",
"sourceRoot": "apps/microservice-user/src",
"compilerOptions": {
"tsConfigPath": "apps/microservice-user/tsconfig.app.json"
}
},
"microservice-role": {
"type": "application",
"root": "apps/microservice-role",
"entryFile": "main",
"sourceRoot": "apps/microservice-role/src",
"compilerOptions": {
"tsConfigPath": "apps/microservice-role/tsconfig.app.json"
}
},
"register-microservice": {
"type": "library",
"root": "libs/register-microservice",
"entryFile": "index",
"sourceRoot": "libs/register-microservice/src",
"compilerOptions": {
"tsConfigPath": "libs/register-microservice/tsconfig.lib.json"
}
},
"upload-file": {
"type": "library",
"root": "libs/upload-file",
"entryFile": "index",
"sourceRoot": "libs/upload-file/src",
"compilerOptions": {
"tsConfigPath": "libs/upload-file/tsconfig.lib.json"
}
},
"course": {
"type": "library",
"root": "libs/course",
"entryFile": "index",
"sourceRoot": "libs/course/src",
"compilerOptions": {
"tsConfigPath": "libs/course/tsconfig.lib.json"
}
},
"microservice-course": {
"type": "application",
"root": "apps/microservice-course",
"entryFile": "main",
"sourceRoot": "apps/microservice-course/src",
"compilerOptions": {
"tsConfigPath": "apps/microservice-course/tsconfig.app.json"
}
},
"microservice-class": {
"type": "application",
"root": "apps/microservice-class",
"entryFile": "main",
"sourceRoot": "apps/microservice-class/src",
"compilerOptions": {
"tsConfigPath": "apps/microservice-class/tsconfig.app.json"
}
},
"microservice-homework": {
"type": "application",
"root": "apps/microservice-homework",
"entryFile": "main",
"sourceRoot": "apps/microservice-homework/src",
"compilerOptions": {
"tsConfigPath": "apps/microservice-homework/tsconfig.app.json"
}
},
"microservice-system": {
"type": "application",
"root": "apps/microservice-system",
"entryFile": "main",
"sourceRoot": "apps/microservice-system/src",
"compilerOptions": {
"tsConfigPath": "apps/microservice-system/tsconfig.app.json"
}
}
}
}