-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnest-cli.json
104 lines (104 loc) · 2.72 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/wooyeon_microservice/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/wooyeon_microservice/tsconfig.app.json"
},
"monorepo": true,
"root": "apps/wooyeon_microservice",
"projects": {
"wooyeon_microservice": {
"type": "application",
"root": "apps/wooyeon_microservice",
"entryFile": "main",
"sourceRoot": "apps/wooyeon_microservice/src",
"compilerOptions": {
"tsConfigPath": "apps/wooyeon_microservice/tsconfig.app.json"
}
},
"post": {
"type": "application",
"root": "apps/post",
"entryFile": "main",
"sourceRoot": "apps/post/src",
"compilerOptions": {
"tsConfigPath": "apps/post/tsconfig.app.json"
}
},
"notification": {
"type": "application",
"root": "apps/notification",
"entryFile": "main",
"sourceRoot": "apps/notification/src",
"compilerOptions": {
"tsConfigPath": "apps/notification/tsconfig.app.json"
}
},
"user": {
"type": "application",
"root": "apps/user",
"entryFile": "main",
"sourceRoot": "apps/user/src",
"compilerOptions": {
"tsConfigPath": "apps/user/tsconfig.app.json"
}
},
"auth": {
"type": "application",
"root": "apps/auth",
"entryFile": "main",
"sourceRoot": "apps/auth/src",
"compilerOptions": {
"tsConfigPath": "apps/auth/tsconfig.app.json"
}
},
"comment": {
"type": "application",
"root": "apps/comment",
"entryFile": "main",
"sourceRoot": "apps/comment/src",
"compilerOptions": {
"tsConfigPath": "apps/comment/tsconfig.app.json"
}
},
"emotion": {
"type": "application",
"root": "apps/emotion",
"entryFile": "main",
"sourceRoot": "apps/emotion/src",
"compilerOptions": {
"tsConfigPath": "apps/emotion/tsconfig.app.json"
}
},
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
},
"sns": {
"type": "library",
"root": "libs/sns",
"entryFile": "index",
"sourceRoot": "libs/sns/src",
"compilerOptions": {
"tsConfigPath": "libs/sns/tsconfig.lib.json"
}
},
"chat": {
"type": "application",
"root": "apps/chat",
"entryFile": "main",
"sourceRoot": "apps/chat/src",
"compilerOptions": {
"tsConfigPath": "apps/chat/tsconfig.app.json"
}
}
}
}