-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest-cli.json
35 lines (34 loc) · 951 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
31
32
33
34
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/producer/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/producer/tsconfig.app.json"
},
"monorepo": true,
"root": "apps/producer",
"projects": {
"producer": {
"type": "application",
"root": "apps/producer",
"entryFile": "main",
"sourceRoot": "apps/producer/src",
"compilerOptions": {
"tsConfigPath": "apps/producer/tsconfig.app.json",
"webpackConfigPath": "apps/producer/webpack.config.js"
}
},
"consumer": {
"type": "application",
"root": "apps/consumer",
"entryFile": "lambda",
"sourceRoot": "apps/consumer/src",
"compilerOptions": {
"tsConfigPath": "apps/consumer/tsconfig.app.json",
"webpackConfigPath": "apps/consumer/webpack.config.js"
}
}
}
}