-
Notifications
You must be signed in to change notification settings - Fork 25
/
nest-cli.json
111 lines (111 loc) · 2.92 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
103
104
105
106
107
108
109
110
111
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/api/src",
"root": "apps/api",
"monorepo": true,
"projects": {
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
},
"definitions": {
"type": "library",
"root": "libs/definitions",
"entryFile": "index",
"sourceRoot": "libs/definitions/src",
"compilerOptions": {
"tsConfigPath": "libs/definitions/tsconfig.lib.json"
}
},
"api": {
"type": "application",
"root": "apps/api",
"entryFile": "main",
"sourceRoot": "apps/api/src",
"compilerOptions": {
"tsConfigPath": "apps/api/tsconfig.app.json"
}
},
"bootstrap": {
"type": "application",
"root": "apps/bootstrap",
"entryFile": "main",
"sourceRoot": "apps/bootstrap/src",
"compilerOptions": {
"tsConfigPath": "apps/bootstrap/tsconfig.app.json"
}
},
"scheduler": {
"type": "application",
"root": "apps/scheduler",
"entryFile": "main",
"sourceRoot": "apps/scheduler/src",
"compilerOptions": {
"tsConfigPath": "apps/scheduler/tsconfig.app.json"
}
},
"runner": {
"type": "application",
"root": "apps/runner",
"entryFile": "main",
"sourceRoot": "apps/runner/src",
"compilerOptions": {
"tsConfigPath": "apps/runner/tsconfig.app.json"
}
},
"emails": {
"type": "library",
"root": "libs/emails",
"entryFile": "index",
"sourceRoot": "libs/emails/src",
"compilerOptions": {
"tsConfigPath": "libs/emails/tsconfig.lib.json"
}
},
"blockchain": {
"type": "library",
"root": "libs/blockchain",
"entryFile": "index",
"sourceRoot": "libs/blockchain/src",
"compilerOptions": {
"tsConfigPath": "libs/blockchain/tsconfig.lib.json"
}
},
"migrations": {
"type": "application",
"root": "apps/migrations",
"entryFile": "main",
"sourceRoot": "apps/migrations/src",
"compilerOptions": {
"tsConfigPath": "apps/migrations/tsconfig.app.json"
}
},
"platform-metrics": {
"type": "application",
"root": "apps/platform-metrics",
"entryFile": "main",
"sourceRoot": "apps/platform-metrics/src",
"compilerOptions": {
"tsConfigPath": "apps/platform-metrics/tsconfig.app.json"
}
},
"blockchain-listener": {
"type": "application",
"root": "apps/blockchain-listener",
"entryFile": "main",
"sourceRoot": "apps/blockchain-listener/src",
"compilerOptions": {
"tsConfigPath": "apps/blockchain-listener/tsconfig.app.json"
}
}
},
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/api/tsconfig.app.json"
}
}