-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest-cli.json
65 lines (65 loc) · 1.84 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
{
"monorepo": true,
"root": "apps/inventory-system/inventory-system-source",
"sourceRoot": "apps/inventory-system/inventory-system-source/src",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/inventory-system/inventory-system-source/tsconfig.app.json"
},
"projects": {
"inventory-system-source": {
"type": "application",
"root": "apps/inventory-system/inventory-system-source",
"entryFile": "main",
"sourceRoot": "apps/inventory-system/inventory-system-source/src",
"compilerOptions": {
"tsConfigPath": "apps/inventory-system/inventory-system-source/tsconfig.app.json"
}
},
"transform": {
"type": "library",
"root": "libs/transform",
"entryFile": "index",
"sourceRoot": "libs/transform/src",
"compilerOptions": {
"tsConfigPath": "libs/transform/tsconfig.lib.json"
}
},
"exception": {
"type": "library",
"root": "libs/exception",
"entryFile": "index",
"sourceRoot": "libs/exception/src",
"compilerOptions": {
"tsConfigPath": "libs/exception/tsconfig.lib.json"
}
},
"constant": {
"type": "library",
"root": "libs/constant",
"entryFile": "index",
"sourceRoot": "libs/constant/src",
"compilerOptions": {
"tsConfigPath": "libs/constant/tsconfig.lib.json"
}
},
"interceptor": {
"type": "library",
"root": "libs/interceptor",
"entryFile": "index",
"sourceRoot": "libs/interceptor/src",
"compilerOptions": {
"tsConfigPath": "libs/interceptor/tsconfig.lib.json"
}
},
"utils": {
"type": "library",
"root": "libs/utils",
"entryFile": "index",
"sourceRoot": "libs/utils/src",
"compilerOptions": {
"tsConfigPath": "libs/utils/tsconfig.lib.json"
}
}
}
}