-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest-cli.json
139 lines (139 loc) · 3.5 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
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/api/src",
"monorepo": true,
"root": "apps/api",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/api/tsconfig.app.json",
"assets": [".env", "firebase-adminsdk.json"]
},
"projects": {
"api": {
"type": "application",
"root": "apps/api",
"entryFile": "main",
"sourceRoot": "apps/api/src",
"compilerOptions": {
"tsConfigPath": "apps/api/tsconfig.app.json"
}
},
"auth": {
"type": "library",
"root": "libs/auth",
"entryFile": "index",
"sourceRoot": "libs/auth/src",
"compilerOptions": {
"tsConfigPath": "libs/auth/tsconfig.lib.json"
}
},
"users": {
"type": "library",
"root": "libs/users",
"entryFile": "index",
"sourceRoot": "libs/users/src",
"compilerOptions": {
"tsConfigPath": "libs/users/tsconfig.lib.json"
}
},
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
},
"config": {
"type": "library",
"root": "libs/config",
"entryFile": "index",
"sourceRoot": "libs/config/src",
"compilerOptions": {
"tsConfigPath": "libs/config/tsconfig.lib.json"
}
},
"core": {
"type": "library",
"root": "libs/core",
"entryFile": "index",
"sourceRoot": "libs/core/src",
"compilerOptions": {
"tsConfigPath": "libs/core/tsconfig.lib.json"
}
},
"database": {
"type": "library",
"root": "libs/database",
"entryFile": "index",
"sourceRoot": "libs/database/src",
"compilerOptions": {
"tsConfigPath": "libs/database/tsconfig.lib.json"
}
},
"logs": {
"type": "library",
"root": "libs/logs",
"entryFile": "index",
"sourceRoot": "libs/logs/src",
"compilerOptions": {
"tsConfigPath": "libs/logs/tsconfig.lib.json"
}
},
"messages": {
"type": "library",
"root": "libs/messages",
"entryFile": "index",
"sourceRoot": "libs/messages/src",
"compilerOptions": {
"tsConfigPath": "libs/messages/tsconfig.lib.json"
}
},
"orders": {
"type": "library",
"root": "libs/orders",
"entryFile": "index",
"sourceRoot": "libs/orders/src",
"compilerOptions": {
"tsConfigPath": "libs/orders/tsconfig.lib.json"
}
},
"payments": {
"type": "library",
"root": "libs/payments",
"entryFile": "index",
"sourceRoot": "libs/payments/src",
"compilerOptions": {
"tsConfigPath": "libs/payments/tsconfig.lib.json"
}
},
"settings": {
"type": "library",
"root": "libs/settings",
"entryFile": "index",
"sourceRoot": "libs/settings/src",
"compilerOptions": {
"tsConfigPath": "libs/settings/tsconfig.lib.json"
}
},
"repository": {
"type": "library",
"root": "libs/repository",
"entryFile": "index",
"sourceRoot": "libs/repository/src",
"compilerOptions": {
"tsConfigPath": "libs/repository/tsconfig.lib.json"
}
},
"testing": {
"type": "library",
"root": "libs/testing",
"entryFile": "index",
"sourceRoot": "libs/testing/src",
"compilerOptions": {
"tsConfigPath": "libs/testing/tsconfig.lib.json"
}
}
}
}