-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnest-cli.json
77 lines (77 loc) · 1.96 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/branch/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/branch/tsconfig.app.json"
},
"monorepo": true,
"root": "apps/branch",
"projects": {
"head": {
"type": "application",
"root": "apps/head",
"entryFile": "main",
"sourceRoot": "apps/head/src",
"compilerOptions": {
"tsConfigPath": "apps/head/tsconfig.app.json"
}
},
"branch": {
"type": "application",
"root": "apps/branch",
"entryFile": "main",
"sourceRoot": "apps/branch/src",
"compilerOptions": {
"tsConfigPath": "apps/branch/tsconfig.app.json"
}
},
"configuration": {
"type": "library",
"root": "libs/configuration",
"entryFile": "index",
"sourceRoot": "libs/configuration/src",
"compilerOptions": {
"tsConfigPath": "libs/configuration/tsconfig.lib.json"
}
},
"base": {
"type": "library",
"root": "libs/base",
"entryFile": "index",
"sourceRoot": "libs/base/src",
"compilerOptions": {
"tsConfigPath": "libs/base/tsconfig.lib.json"
}
},
"rabbitmq": {
"type": "library",
"root": "libs/rabbitmq",
"entryFile": "index",
"sourceRoot": "libs/rabbitmq/src",
"compilerOptions": {
"tsConfigPath": "libs/rabbitmq/tsconfig.lib.json"
}
},
"product-sales": {
"type": "library",
"root": "libs/product-sales",
"entryFile": "index",
"sourceRoot": "libs/product-sales/src",
"compilerOptions": {
"tsConfigPath": "libs/product-sales/tsconfig.lib.json"
}
},
"sync": {
"type": "library",
"root": "libs/sync",
"entryFile": "index",
"sourceRoot": "libs/sync/src",
"compilerOptions": {
"tsConfigPath": "libs/sync/tsconfig.lib.json"
}
}
}
}