This repository has been archived by the owner on Jan 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathnest-cli.json
129 lines (129 loc) · 3.27 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
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/backend/src",
"monorepo": true,
"root": "apps/backend",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/backend/tsconfig.app.json"
},
"projects": {
"backend": {
"type": "application",
"root": "apps/backend",
"entryFile": "main",
"sourceRoot": "apps/backend/src",
"compilerOptions": {
"tsConfigPath": "apps/backend/tsconfig.app.json"
}
},
"frontend": {
"type": "application",
"root": "apps/frontend",
"entryFile": "main",
"sourceRoot": "apps/frontend/src",
"compilerOptions": {
"tsConfigPath": "apps/frontend/tsconfig.app.json"
}
},
"shared": {
"type": "library",
"root": "libs/shared",
"entryFile": "index",
"sourceRoot": "libs/shared/src",
"compilerOptions": {
"tsConfigPath": "libs/shared/tsconfig.lib.json"
}
},
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
},
"common/database": {
"type": "library",
"root": "libs/common/database",
"entryFile": "index",
"sourceRoot": "libs/common/database/src",
"compilerOptions": {
"tsConfigPath": "libs/common/database/tsconfig.lib.json"
}
},
"database": {
"type": "library",
"root": "libs/database",
"entryFile": "index",
"sourceRoot": "libs/database/src",
"compilerOptions": {
"tsConfigPath": "libs/database/tsconfig.lib.json"
}
},
"auth": {
"type": "library",
"root": "libs/auth",
"entryFile": "index",
"sourceRoot": "libs/auth/src",
"compilerOptions": {
"tsConfigPath": "libs/auth/tsconfig.lib.json"
}
},
"core": {
"type": "library",
"root": "libs/core",
"entryFile": "index",
"sourceRoot": "libs/core/src",
"compilerOptions": {
"tsConfigPath": "libs/core/tsconfig.lib.json"
}
},
"category": {
"type": "library",
"root": "libs/category",
"entryFile": "index",
"sourceRoot": "libs/category/src",
"compilerOptions": {
"tsConfigPath": "libs/category/tsconfig.lib.json"
}
},
"article": {
"type": "library",
"root": "libs/article",
"entryFile": "index",
"sourceRoot": "libs/article/src",
"compilerOptions": {
"tsConfigPath": "libs/article/tsconfig.lib.json"
}
},
"fields": {
"type": "library",
"root": "libs/fields",
"entryFile": "index",
"sourceRoot": "libs/fields/src",
"compilerOptions": {
"tsConfigPath": "libs/fields/tsconfig.lib.json"
}
},
"tags": {
"type": "library",
"root": "libs/tags",
"entryFile": "index",
"sourceRoot": "libs/tags/src",
"compilerOptions": {
"tsConfigPath": "libs/tags/tsconfig.lib.json"
}
},
"links": {
"type": "library",
"root": "libs/links",
"entryFile": "index",
"sourceRoot": "libs/links/src",
"compilerOptions": {
"tsConfigPath": "libs/links/tsconfig.lib.json"
}
}
}
}