-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest-cli.json
102 lines (102 loc) · 2.71 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
96
97
98
99
100
101
102
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/gateway/src",
"monorepo": true,
"root": "apps/gateway",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/gateway/tsconfig.app.json"
},
"projects": {
"gateway": {
"type": "application",
"root": "apps/gateway",
"entryFile": "main",
"sourceRoot": "apps/gateway/src",
"compilerOptions": {
"tsConfigPath": "apps/gateway/tsconfig.app.json"
}
},
"runner": {
"type": "application",
"root": "apps/runner",
"entryFile": "main",
"sourceRoot": "apps/runner/src",
"compilerOptions": {
"tsConfigPath": "apps/runner/tsconfig.app.json"
}
},
"analyzer": {
"type": "application",
"root": "apps/analyzer",
"entryFile": "main",
"sourceRoot": "apps/analyzer/src",
"compilerOptions": {
"tsConfigPath": "apps/analyzer/tsconfig.app.json"
}
},
"alpaca-subscriber": {
"type": "application",
"root": "apps/alpaca-subscriber",
"entryFile": "main",
"sourceRoot": "apps/alpaca-subscriber/src",
"compilerOptions": {
"tsConfigPath": "apps/alpaca-subscriber/tsconfig.app.json"
}
},
"coinbase-subscriber": {
"type": "application",
"root": "apps/coinbase-subscriber",
"entryFile": "main",
"sourceRoot": "apps/coinbase-subscriber/src",
"compilerOptions": {
"tsConfigPath": "apps/coinbase-subscriber/tsconfig.app.json"
}
},
"alpaca-client": {
"type": "library",
"root": "libs/alpaca-client",
"entryFile": "index",
"sourceRoot": "libs/alpaca-client/src",
"compilerOptions": {
"tsConfigPath": "libs/alpaca-client/tsconfig.lib.json"
}
},
"alpaca": {
"type": "library",
"root": "libs/alpaca",
"entryFile": "index",
"sourceRoot": "libs/alpaca/src",
"compilerOptions": {
"tsConfigPath": "libs/alpaca/tsconfig.lib.json"
}
},
"coinbase-client": {
"type": "library",
"root": "libs/coinbase-client",
"entryFile": "index",
"sourceRoot": "libs/coinbase-client/src",
"compilerOptions": {
"tsConfigPath": "libs/coinbase-client/tsconfig.lib.json"
}
},
"events": {
"type": "library",
"root": "libs/events",
"entryFile": "index",
"sourceRoot": "libs/events/src",
"compilerOptions": {
"tsConfigPath": "libs/events/tsconfig.lib.json"
}
},
"clock": {
"type": "library",
"root": "libs/clock",
"entryFile": "index",
"sourceRoot": "libs/clock/src",
"compilerOptions": {
"tsConfigPath": "libs/clock/tsconfig.lib.json"
}
}
}
}