forked from yaperos/app-nodejs-codechallenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest-cli.json
35 lines (35 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/transactions/src",
"compilerOptions": {
"plugins": ["@nestjs/swagger"]
},
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/transactions/tsconfig.app.json"
},
"monorepo": true,
"root": "apps/transactions",
"projects": {
"transactions": {
"type": "application",
"root": "apps/transactions",
"entryFile": "main",
"sourceRoot": "apps/transactions/src",
"compilerOptions": {
"tsConfigPath": "apps/transactions/tsconfig.app.json"
}
},
"antifraud": {
"type": "application",
"root": "apps/antifraud",
"entryFile": "main",
"sourceRoot": "apps/antifraud/src",
"compilerOptions": {
"tsConfigPath": "apps/antifraud/tsconfig.app.json"
}
}
}
}