-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest-cli.json
149 lines (149 loc) · 3.95 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/back-end/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/back-end/tsconfig.app.json"
},
"monorepo": true,
"root": "apps/back-end",
"projects": {
"dashboard": {
"type": "application",
"root": "apps/dashboard",
"entryFile": "main",
"sourceRoot": "apps/dashboard/src",
"compilerOptions": {
"tsConfigPath": "apps/dashboard/tsconfig.app.json"
}
},
"bot": {
"type": "application",
"root": "apps/bot",
"entryFile": "main",
"sourceRoot": "apps/bot/src",
"compilerOptions": {
"tsConfigPath": "apps/bot/tsconfig.app.json"
}
},
"back-end": {
"type": "application",
"root": "apps/back-end",
"entryFile": "main",
"sourceRoot": "apps/back-end/src",
"compilerOptions": {
"tsConfigPath": "apps/back-end/tsconfig.app.json"
}
},
"chat-mq": {
"type": "application",
"root": "apps/chat-mq",
"entryFile": "main",
"sourceRoot": "apps/chat-mq/src",
"compilerOptions": {
"tsConfigPath": "apps/chat-mq/tsconfig.app.json"
}
},
"youtube-channel-crawler": {
"type": "application",
"root": "apps/youtube-channel-crawler",
"entryFile": "main",
"sourceRoot": "apps/youtube-channel-crawler/src",
"compilerOptions": {
"tsConfigPath": "apps/youtube-channel-crawler/tsconfig.app.json"
}
},
"database": {
"type": "library",
"root": "libs/database",
"entryFile": "index",
"sourceRoot": "libs/database/src",
"compilerOptions": {
"tsConfigPath": "libs/database/tsconfig.lib.json"
}
},
"database-queue": {
"type": "library",
"root": "libs/database-queue",
"entryFile": "index",
"sourceRoot": "libs/database-queue/src",
"compilerOptions": {
"tsConfigPath": "libs/database-queue/tsconfig.lib.json"
}
},
"database-processor": {
"type": "library",
"root": "libs/database-processor",
"entryFile": "index",
"sourceRoot": "libs/database-processor/src",
"compilerOptions": {
"tsConfigPath": "libs/database-processor/tsconfig.lib.json"
}
},
"queue": {
"type": "library",
"root": "libs/queue",
"entryFile": "index",
"sourceRoot": "libs/queue/src",
"compilerOptions": {
"tsConfigPath": "libs/queue/tsconfig.lib.json"
}
},
"queue-board": {
"type": "library",
"root": "libs/queue-board",
"entryFile": "index",
"sourceRoot": "libs/queue-board/src",
"compilerOptions": {
"tsConfigPath": "libs/queue-board/tsconfig.lib.json"
}
},
"user": {
"type": "library",
"root": "libs/user",
"entryFile": "index",
"sourceRoot": "libs/user/src",
"compilerOptions": {
"tsConfigPath": "libs/user/tsconfig.lib.json"
}
},
"track": {
"type": "library",
"root": "libs/track",
"entryFile": "index",
"sourceRoot": "libs/track/src",
"compilerOptions": {
"tsConfigPath": "libs/track/tsconfig.lib.json"
}
},
"discord": {
"type": "library",
"root": "libs/discord",
"entryFile": "index",
"sourceRoot": "libs/discord/src",
"compilerOptions": {
"tsConfigPath": "libs/discord/tsconfig.lib.json"
}
},
"youtube": {
"type": "library",
"root": "libs/youtube",
"entryFile": "index",
"sourceRoot": "libs/youtube/src",
"compilerOptions": {
"tsConfigPath": "libs/youtube/tsconfig.lib.json"
}
},
"twitch": {
"type": "library",
"root": "libs/twitch",
"entryFile": "index",
"sourceRoot": "libs/twitch/src",
"compilerOptions": {
"tsConfigPath": "libs/twitch/tsconfig.lib.json"
}
}
}
}