-
Notifications
You must be signed in to change notification settings - Fork 15
/
nest-cli.json
41 lines (41 loc) · 1.14 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/ftso-data-provider/src",
"compilerOptions": {
"deleteOutDir": true,
"plugins": [
{
"name": "@nestjs/swagger",
"options": {
"classValidatorShim": false,
"introspectComments": true
}
}
],
"webpack": false,
"tsConfigPath": "apps/ftso-data-provider/tsconfig.app.json"
},
"projects": {
"ftso-data-provider": {
"type": "application",
"root": "apps/ftso-data-provider",
"entryFile": "main",
"sourceRoot": "apps/ftso-data-provider/src",
"compilerOptions": {
"tsConfigPath": "apps/ftso-data-provider/tsconfig.app.json"
}
},
"ftso-reward-calculation-process": {
"type": "application",
"root": "apps/ftso-reward-calculation-process",
"entryFile": "main",
"sourceRoot": "apps/ftso-reward-calculation-process/src",
"compilerOptions": {
"tsConfigPath": "apps/ftso-reward-calculation-process/tsconfig.app.json"
}
}
},
"monorepo": true,
"root": "apps/ftso-data-provider"
}