-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest-cli.json
122 lines (122 loc) · 3.14 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/server/tsconfig.app.json"
},
"monorepo": true,
"root": "apps/server",
"projects": {
"server": {
"type": "application",
"root": "apps/server",
"entryFile": "main",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
},
"graphql": {
"type": "library",
"root": "libs/graphql",
"entryFile": "index",
"sourceRoot": "libs/graphql/src",
"compilerOptions": {
"tsConfigPath": "libs/graphql/tsconfig.lib.json"
}
},
"prisma": {
"type": "library",
"root": "libs/prisma",
"entryFile": "index",
"sourceRoot": "libs/prisma/src",
"compilerOptions": {
"tsConfigPath": "libs/prisma/tsconfig.lib.json"
}
},
"auth": {
"type": "library",
"root": "libs/auth",
"entryFile": "index",
"sourceRoot": "libs/auth/src",
"compilerOptions": {
"tsConfigPath": "libs/auth/tsconfig.lib.json"
}
},
"mailer": {
"type": "library",
"root": "libs/mailer",
"entryFile": "index",
"sourceRoot": "libs/mailer/src",
"compilerOptions": {
"tsConfigPath": "libs/mailer/tsconfig.lib.json"
}
},
"user": {
"type": "library",
"root": "libs/user",
"entryFile": "index",
"sourceRoot": "libs/user/src",
"compilerOptions": {
"tsConfigPath": "libs/user/tsconfig.lib.json"
}
},
"post-category": {
"type": "library",
"root": "libs/post-category",
"entryFile": "index",
"sourceRoot": "libs/post-category/src",
"compilerOptions": {
"tsConfigPath": "libs/post-category/tsconfig.lib.json"
}
},
"blog": {
"type": "library",
"root": "libs/blog",
"entryFile": "index",
"sourceRoot": "libs/blog/src",
"compilerOptions": {
"tsConfigPath": "libs/blog/tsconfig.lib.json"
}
},
"images": {
"type": "library",
"root": "libs/images",
"entryFile": "index",
"sourceRoot": "libs/images/src",
"compilerOptions": {
"tsConfigPath": "libs/images/tsconfig.lib.json"
}
},
"file-manager": {
"type": "library",
"root": "libs/file-manager",
"entryFile": "index",
"sourceRoot": "libs/file-manager/src",
"compilerOptions": {
"tsConfigPath": "libs/file-manager/tsconfig.lib.json"
}
},
"breadcrumb": {
"type": "library",
"root": "libs/breadcrumb",
"entryFile": "index",
"sourceRoot": "libs/breadcrumb/src",
"compilerOptions": {
"tsConfigPath": "libs/breadcrumb/tsconfig.lib.json"
}
},
"sitemap-xml": {
"type": "library",
"root": "libs/sitemap-xml",
"entryFile": "index",
"sourceRoot": "libs/sitemap-xml/src",
"compilerOptions": {
"tsConfigPath": "libs/sitemap-xml/tsconfig.lib.json"
}
}
}
}