forked from flare-foundation/attestation-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnest-cli.json
More file actions
47 lines (47 loc) · 1.23 KB
/
nest-cli.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"monorepo": true,
"root": "lib/servers/ws-server",
"sourceRoot": "lib/servers/ws-server/src",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "lib/servers/ws-server/tsconfig.app.json"
},
"projects": {
"ws-server": {
"type": "application",
"root": "lib/servers/ws-server",
"entryFile": "main",
"sourceRoot": "lib/servers/ws-server/src",
"compilerOptions": {
"tsConfigPath": "lib/servers/ws-server/tsconfig.app.json"
}
},
"web-server": {
"type": "application",
"root": "lib/servers/web-server",
"entryFile": "main",
"sourceRoot": "lib/servers/web-server/src",
"compilerOptions": {
"tsConfigPath": "lib/servers/web-server/tsconfig.app.json",
"plugins": [
{
"name": "@nestjs/swagger",
"options": {
"classValidatorShim": false,
"introspectComments": true
}
}
]
}
},
"common": {
"type": "library",
"root": "lib/servers/common",
"entryFile": "index",
"sourceRoot": "lib/servers/common/src",
"compilerOptions": {
"tsConfigPath": "lib/servers/common/tsconfig.lib.json"
}
}
}
}