-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnest-cli.json
More file actions
77 lines (77 loc) · 2.08 KB
/
nest-cli.json
File metadata and controls
77 lines (77 loc) · 2.08 KB
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/off-library/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/off-library/tsconfig.app.json"
},
"monorepo": true,
"root": "apps/off-library",
"projects": {
"cache_provider": {
"type": "library",
"root": "libs/cache_provider",
"entryFile": "index",
"sourceRoot": "libs/cache_provider/src",
"compilerOptions": {
"tsConfigPath": "libs/cache_provider/tsconfig.lib.json"
}
},
"common-core": {
"type": "library",
"root": "libs/common-core",
"entryFile": "index",
"sourceRoot": "libs/common-core/src",
"compilerOptions": {
"tsConfigPath": "libs/common-core/tsconfig.lib.json"
}
},
"factus_core": {
"type": "library",
"root": "libs/factus_core",
"entryFile": "index",
"sourceRoot": "libs/factus_core/src",
"compilerOptions": {
"tsConfigPath": "libs/factus_core/tsconfig.lib.json"
}
},
"gateway": {
"type": "application",
"root": "apps/gateway",
"entryFile": "main",
"sourceRoot": "apps/gateway/src",
"compilerOptions": {
"tsConfigPath": "apps/gateway/tsconfig.app.json"
}
},
"library": {
"type": "application",
"root": "apps/library",
"entryFile": "main",
"sourceRoot": "apps/library/src",
"compilerOptions": {
"tsConfigPath": "apps/library/tsconfig.app.json"
}
},
"logging_provider": {
"type": "library",
"root": "libs/logging_provider",
"entryFile": "index",
"sourceRoot": "libs/logging_provider/src",
"compilerOptions": {
"tsConfigPath": "libs/logging_provider/tsconfig.lib.json"
}
},
"off-library": {
"type": "application",
"root": "apps/off-library",
"entryFile": "main",
"sourceRoot": "apps/off-library/src",
"compilerOptions": {
"tsConfigPath": "apps/off-library/tsconfig.app.json"
}
}
}
}