-
Notifications
You must be signed in to change notification settings - Fork 3
/
nest-cli.json
73 lines (73 loc) · 1.74 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
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/api",
"compilerOptions": {
"webpack": false,
"tsConfigPath": "./tsconfig.json"
},
"monorepo": true,
"root": "apps/api",
"projects": {
"api": {
"type": "application",
"root": "apps/api",
"entryFile": "src/main",
"sourceRoot": "apps/api",
"compilerOptions": {
"tsConfigPath": "apps/api/tsconfig.app.json",
"assets": [
{
"include": "views/**/*.ejs",
"outDir": "dist/apps/api"
}
],
"watchAssets": true
}
},
"batch": {
"type": "application",
"root": "apps/batch",
"entryFile": "main",
"sourceRoot": "apps/batch/src",
"compilerOptions": {
"tsConfigPath": "apps/batch/tsconfig.app.json"
}
},
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
},
"utils": {
"type": "library",
"root": "libs/utils",
"entryFile": "index",
"sourceRoot": "libs/utils/src",
"compilerOptions": {
"tsConfigPath": "libs/utils/tsconfig.lib.json"
}
},
"entity": {
"type": "library",
"root": "libs/entity",
"entryFile": "index",
"sourceRoot": "libs/entity/src",
"compilerOptions": {
"tsConfigPath": "libs/entity/tsconfig.lib.json"
}
},
"admin": {
"type": "application",
"root": "apps/admin",
"entryFile": "main",
"sourceRoot": "apps/admin/src",
"compilerOptions": {
"tsConfigPath": "apps/admin/tsconfig.app.json"
}
}
}
}