-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathnest-cli.json
34 lines (34 loc) · 954 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/mba-ddd-venda-ingresso/src",
"compilerOptions": {
"deleteOutDir": true,
"builder": "swc",
"typeCheck": true,
"webpack": true,
"tsConfigPath": "apps/mba-ddd-venda-ingresso/tsconfig.app.json"
},
"monorepo": true,
"root": "apps/mba-ddd-venda-ingresso",
"projects": {
"mba-ddd-venda-ingresso": {
"type": "application",
"root": "apps/mba-ddd-venda-ingresso",
"entryFile": "main",
"sourceRoot": "apps/mba-ddd-venda-ingresso/src",
"compilerOptions": {
"tsConfigPath": "apps/mba-ddd-venda-ingresso/tsconfig.app.json"
}
},
"emails": {
"type": "application",
"root": "apps/emails",
"entryFile": "main",
"sourceRoot": "apps/emails/src",
"compilerOptions": {
"tsConfigPath": "apps/emails/tsconfig.app.json"
}
}
}
}