-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest-cli.json
48 lines (48 loc) · 1.13 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
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/serve/src",
"monorepo": true,
"root": "apps/serve",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/serve/tsconfig.app.json"
},
"projects": {
"admin": {
"type": "application",
"root": "apps/admin",
"entryFile": "main",
"sourceRoot": "apps/admin/src",
"compilerOptions": {
"tsConfigPath": "apps/admin/tsconfig.app.json"
}
},
"web": {
"type": "application",
"root": "apps/web",
"entryFile": "main",
"sourceRoot": "apps/web/src",
"compilerOptions": {
"tsConfigPath": "apps/web/tsconfig.app.json"
}
},
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
},
"db": {
"type": "library",
"root": "libs/db",
"entryFile": "index",
"sourceRoot": "libs/db/src",
"compilerOptions": {
"tsConfigPath": "libs/db/tsconfig.lib.json"
}
}
}
}