-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathnest-cli.json
More file actions
94 lines (94 loc) · 2.63 KB
/
nest-cli.json
File metadata and controls
94 lines (94 loc) · 2.63 KB
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
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/server/src",
"monorepo": true,
"root": "apps/server",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json",
"plugins": ["@nestjs/swagger/plugin"],
"assets": [
{
"include": "apps/server/docs/swagger.json",
"outDir": "dist/apps/server/apps/server/docs"
}
]
},
"projects": {
"server": {
"type": "application",
"root": "apps/server",
"sourceRoot": "apps/server/src",
"entryFile": "bootstrap/bootstrap",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json",
"plugins": ["@nestjs/swagger/plugin"]
}
},
"scholar-sync": {
"type": "application",
"root": "apps/scholar-sync",
"sourceRoot": "apps/scholar-sync/src",
"entryFile": "bootstrap/bootstrap",
"compilerOptions": {
"tsConfigPath": "apps/scholar-sync/tsconfig.app.json",
"plugins": ["@nestjs/swagger/plugin"]
}
},
"notification-consumer": {
"type": "application",
"root": "apps/notification-consumer/src",
"sourceRoot": "apps/notification-consumer/src",
"entryFile": "bootstrap/bootstrap",
"compilerOptions": {
"tsConfigPath": "apps/notification-consumer/tsconfig.app.json",
"plugins": ["@nestjs/swagger/plugin"]
}
},
"server-consumer": {
"type": "application",
"root": "apps/server-consumer/src",
"sourceRoot": "apps/server-consumer/src",
"entryFile": "bootstrap/bootstrap",
"compilerOptions": {
"tsConfigPath": "apps/server-consumer/tsconfig.app.json",
"plugins": ["@nestjs/swagger/plugin"]
}
},
"prisma-client": {
"type": "library",
"root": "libs/prisma-client",
"sourceRoot": "libs/prisma-client/src",
"entryFile": "index",
"compilerOptions": {
"tsConfigPath": "libs/prisma-client/tsconfig.lib.json"
}
},
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
},
"rmq": {
"type": "library",
"root": "libs/rmq",
"sourceRoot": "libs/rmq/src",
"entryFile": "index",
"compilerOptions": {
"tsConfigPath": "libs/rmq/tsconfig.lib.json"
}
},
"redis": {
"type": "library",
"root": "libs/redis",
"sourceRoot": "libs/redis/src",
"entryFile": "index",
"compilerOptions": {
"tsConfigPath": "libs/redis/tsconfig.lib.json"
}
}
}
}