-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathnest-cli.json
36 lines (36 loc) · 914 Bytes
/
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
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/triangular-arbitrage2/src",
"monorepo": true,
"root": "apps/triangular-arbitrage2",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/triangular-arbitrage2/tsconfig.app.json"
},
"projects": {
"cli-app": {
"type": "application",
"root": "apps/cli-app",
"entryFile": "main",
"sourceRoot": "apps/cli-app/src",
"compilerOptions": {
"tsConfigPath": "apps/cli-app/tsconfig.app.json"
}
},
"pro-cli-app": {
"type": "application",
"root": "apps/pro-cli-app",
"entryFile": "main",
"sourceRoot": "apps/pro-cli-app/src",
"compilerOptions": {
"tsConfigPath": "apps/pro-cli-app/tsconfig.app.json"
}
},
"ta2-libs": {
"type": "library",
"root": "libs",
"entryFile": "index",
"sourceRoot": "libs"
}
}
}