-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest-cli.json
77 lines (77 loc) · 2.04 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/btc-exchange-rate/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/btc-exchange-rate/tsconfig.app.json"
},
"monorepo": true,
"root": "apps/btc-exchange-rate",
"projects": {
"worker-app": {
"type": "application",
"root": "apps/worker-app",
"entryFile": "main",
"sourceRoot": "apps/worker-app/src",
"compilerOptions": {
"tsConfigPath": "apps/worker-app/tsconfig.app.json"
}
},
"service-app": {
"type": "application",
"root": "apps/service-app",
"entryFile": "main",
"sourceRoot": "apps/service-app/src",
"compilerOptions": {
"tsConfigPath": "apps/service-app/tsconfig.app.json"
}
},
"prisma": {
"type": "library",
"root": "libs/prisma",
"entryFile": "index",
"sourceRoot": "libs/prisma/src",
"compilerOptions": {
"tsConfigPath": "libs/prisma/tsconfig.lib.json"
}
},
"configuration": {
"type": "library",
"root": "libs/configuration",
"entryFile": "index",
"sourceRoot": "libs/configuration/src",
"compilerOptions": {
"tsConfigPath": "libs/configuration/tsconfig.lib.json"
}
},
"prometheus": {
"type": "library",
"root": "libs/prometheus",
"entryFile": "index",
"sourceRoot": "libs/prometheus/src",
"compilerOptions": {
"tsConfigPath": "libs/prometheus/tsconfig.lib.json"
}
},
"network": {
"type": "library",
"root": "libs/network",
"entryFile": "index",
"sourceRoot": "libs/network/src",
"compilerOptions": {
"tsConfigPath": "libs/network/tsconfig.lib.json"
}
},
"mailer": {
"type": "library",
"root": "libs/mailer",
"entryFile": "index",
"sourceRoot": "libs/mailer/src",
"compilerOptions": {
"tsConfigPath": "libs/mailer/tsconfig.lib.json"
}
}
}
}