-
Notifications
You must be signed in to change notification settings - Fork 2
/
nest-cli.json
42 lines (42 loc) · 1008 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
36
37
38
39
40
41
42
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/api/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"assets": ["**/*.proto"],
"watchAssets": true
},
"projects": {
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
},
"api": {
"type": "application",
"root": "apps/api",
"entryFile": "main",
"sourceRoot": "apps/api/src",
"compilerOptions": {
"tsConfigPath": "apps/api/tsconfig.app.json"
}
},
"swap": {
"type": "application",
"root": "apps/swap",
"entryFile": "main",
"sourceRoot": "apps/swap/src",
"compilerOptions": {
"tsConfigPath": "apps/swap/tsconfig.app.json"
}
}
},
"monorepo": true,
"root": "apps/api"
}