forked from tansincosy/GZAgent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest-cli.json
55 lines (55 loc) · 1.31 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"projects": {
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
},
"crypto": {
"type": "library",
"root": "libs/crypto",
"entryFile": "index",
"sourceRoot": "libs/crypto/src",
"compilerOptions": {
"tsConfigPath": "libs/crypto/tsconfig.lib.json"
}
},
"config": {
"type": "library",
"root": "libs/config",
"entryFile": "index",
"sourceRoot": "libs/config/src",
"compilerOptions": {
"tsConfigPath": "libs/config/tsconfig.lib.json"
}
},
"core": {
"type": "library",
"root": "libs/core",
"entryFile": "index",
"sourceRoot": "libs/core/src",
"compilerOptions": {
"tsConfigPath": "libs/core/tsconfig.lib.json"
}
},
"http": {
"type": "library",
"root": "libs/http",
"entryFile": "index",
"sourceRoot": "libs/http/src",
"compilerOptions": {
"tsConfigPath": "libs/http/tsconfig.lib.json"
}
}
},
"compilerOptions": {
"webpack": true
}
}