-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnest-cli.json
51 lines (51 loc) · 1.29 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/order/src",
"entryFile": "cmd/http.cmd",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/order/tsconfig.app.json"
},
"monorepo": true,
"root": "apps/order",
"projects": {
"order-http": {
"type": "application",
"root": "apps/order",
"entryFile": "cmd/http.cmd",
"sourceRoot": "apps/order/src",
"compilerOptions": {
"tsConfigPath": "apps/order/tsconfig.app.json"
}
},
"order-consumer": {
"type": "application",
"root": "apps/order",
"entryFile": "cmd/kafka.cmd",
"sourceRoot": "apps/order/src",
"compilerOptions": {
"tsConfigPath": "apps/order/tsconfig.app.json"
}
},
"nfe-consumer": {
"type": "application",
"root": "apps/nfe",
"entryFile": "cmd/kafka.cmd",
"sourceRoot": "apps/nfe/src",
"compilerOptions": {
"tsConfigPath": "apps/nfe/tsconfig.app.json"
}
},
"kafka": {
"type": "library",
"root": "libs/kafka",
"entryFile": "index",
"sourceRoot": "libs/kafka/src",
"compilerOptions": {
"tsConfigPath": "libs/kafka/tsconfig.lib.json"
}
}
}
}