forked from VincentJouanne/nest-clean-architecture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest-cli.json
30 lines (30 loc) · 785 Bytes
/
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
{
"collection": "@nestjs/schematics",
"sourceRoot": "api-gateway/src",
"monorepo": true,
"root": "api-gateway",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "api-gateway/tsconfig.app.json"
},
"projects": {
"api-gateway": {
"type": "application",
"root": "api-gateway",
"entryFile": "main",
"sourceRoot": "api-gateway/src",
"compilerOptions": {
"tsConfigPath": "api-gateway/tsconfig.app.json"
},
"core-log": {
"type": "library",
"root": "libs/core-log",
"entryFile": "index",
"sourceRoot": "libs/core-log/src",
"compilerOptions": {
"tsConfigPath": "libs/core-log/tsconfig.lib.json"
}
}
}
}
}