-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnest-cli.json
More file actions
98 lines (98 loc) · 2.29 KB
/
nest-cli.json
File metadata and controls
98 lines (98 loc) · 2.29 KB
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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/client/src",
"compilerOptions": {
"plugins": [
{
"name": "@nestjs/swagger",
"options": {
"dtoFileNameSuffix": [".dto.ts", ".schema.ts", ".model.ts"],
"controllerFileNameSuffix": ".controller.ts",
"dtoKeyOfComment": "description",
"controllerKeyOfComment": "description",
"classValidatorShim": false,
"introspectComments": true
}
}
],
"webpack": true,
"tsConfigPath": "apps/client/tsconfig.app.json"
},
"projects": {
"database": {
"type": "library",
"root": "libs/database",
"entryFile": "index",
"sourceRoot": "libs/database/src",
"compilerOptions": {
"tsConfigPath": "libs/database/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"
}
},
"types": {
"type": "library",
"root": "libs/types",
"entryFile": "index",
"sourceRoot": "libs/types/src",
"compilerOptions": {
"tsConfigPath": "libs/types/tsconfig.lib.json"
}
},
"admin": {
"type": "application",
"root": "apps/admin",
"entryFile": "main",
"sourceRoot": "apps/admin/src",
"compilerOptions": {
"tsConfigPath": "apps/admin/tsconfig.app.json"
}
},
"authentication": {
"type": "library",
"root": "libs/authentication",
"entryFile": "index",
"sourceRoot": "libs/authentication/src",
"compilerOptions": {
"tsConfigPath": "libs/authentication/tsconfig.lib.json"
}
},
"sale": {
"type": "application",
"root": "apps/sale",
"entryFile": "main",
"sourceRoot": "apps/sale/src",
"compilerOptions": {
"tsConfigPath": "apps/sale/tsconfig.app.json"
}
},
"client": {
"type": "application",
"root": "apps/client",
"entryFile": "main",
"sourceRoot": "apps/client/src",
"compilerOptions": {
"tsConfigPath": "apps/client/tsconfig.app.json"
}
}
},
"monorepo": true,
"root": "apps/client"
}