-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnest-cli.json
More file actions
71 lines (71 loc) · 1.63 KB
/
nest-cli.json
File metadata and controls
71 lines (71 loc) · 1.63 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
{
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"projects": {
"level": {
"type": "library",
"root": "libs/level",
"entryFile": "index",
"sourceRoot": "libs/level/src",
"compilerOptions": {
"tsConfigPath": "libs/level/tsconfig.lib.json"
}
},
"rest-utils": {
"type": "library",
"root": "libs/rest-utils",
"entryFile": "index",
"sourceRoot": "libs/rest-utils/src",
"compilerOptions": {
"tsConfigPath": "libs/rest-utils/tsconfig.lib.json"
}
},
"user": {
"type": "library",
"root": "libs/user",
"entryFile": "index",
"sourceRoot": "libs/user/src",
"compilerOptions": {
"tsConfigPath": "libs/user/tsconfig.lib.json"
}
},
"mail": {
"type": "library",
"root": "libs/mail",
"entryFile": "index",
"sourceRoot": "libs/mail/src",
"compilerOptions": {
"tsConfigPath": "libs/mail/tsconfig.lib.json"
}
},
"auth": {
"type": "library",
"root": "libs/auth",
"entryFile": "index",
"sourceRoot": "libs/auth/src",
"compilerOptions": {
"tsConfigPath": "libs/auth/tsconfig.lib.json"
}
},
"config": {
"type": "library",
"root": "libs/config",
"entryFile": "index",
"sourceRoot": "libs/config/src",
"compilerOptions": {
"tsConfigPath": "libs/config/tsconfig.lib.json"
}
}
},
"compilerOptions": {
"plugins": [
{
"name": "@nestjs/swagger",
"options": {
"introspectComments": true
}
}
],
"webpack": true
}
}