-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest-cli.json
95 lines (95 loc) · 2.42 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/cmnw-oraculum/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/cmnw-oraculum/tsconfig.app.json"
},
"monorepo": true,
"root": "apps/cmnw-oraculum",
"projects": {
"rainy": {
"type": "application",
"root": "apps/rainy",
"entryFile": "main",
"sourceRoot": "apps/rainy/src",
"compilerOptions": {
"tsConfigPath": "apps/rainy/tsconfig.app.json"
}
},
"pg": {
"type": "library",
"root": "libs/pg",
"entryFile": "index",
"sourceRoot": "libs/pg/src",
"compilerOptions": {
"tsConfigPath": "libs/pg/tsconfig.lib.json"
}
},
"fefenya": {
"type": "application",
"root": "apps/fefenya",
"entryFile": "main",
"sourceRoot": "apps/fefenya/src",
"compilerOptions": {
"tsConfigPath": "apps/fefenya/tsconfig.app.json"
}
},
"config": {
"type": "library",
"root": "libs/config",
"entryFile": "index",
"sourceRoot": "libs/config/src",
"compilerOptions": {
"tsConfigPath": "libs/config/tsconfig.lib.json"
}
},
"pepa-chat-gpt": {
"type": "application",
"root": "apps/pepa-chat-gpt",
"entryFile": "main",
"sourceRoot": "apps/pepa-chat-gpt/src",
"compilerOptions": {
"tsConfigPath": "apps/pepa-chat-gpt/tsconfig.app.json"
}
},
"rodriga": {
"type": "application",
"root": "apps/rodriga",
"entryFile": "main",
"sourceRoot": "apps/rodriga/src",
"compilerOptions": {
"tsConfigPath": "apps/rodriga/tsconfig.app.json"
}
},
"mongo": {
"type": "library",
"root": "libs/mongo",
"entryFile": "index",
"sourceRoot": "libs/mongo/src",
"compilerOptions": {
"tsConfigPath": "libs/mongo/tsconfig.lib.json"
}
},
"core": {
"type": "library",
"root": "libs/core",
"entryFile": "index",
"sourceRoot": "libs/core/src",
"compilerOptions": {
"tsConfigPath": "libs/core/tsconfig.lib.json"
}
},
"commands": {
"type": "library",
"root": "libs/commands",
"entryFile": "index",
"sourceRoot": "libs/commands/src",
"compilerOptions": {
"tsConfigPath": "libs/commands/tsconfig.lib.json"
}
}
}
}