-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnest-cli.json
More file actions
49 lines (49 loc) · 1.19 KB
/
nest-cli.json
File metadata and controls
49 lines (49 loc) · 1.19 KB
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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"monorepo": true,
"root": "apps",
"sourceRoot": "",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true
},
"projects": {
"api-gateway": {
"type": "application",
"root": "apps/api-gateway",
"entryFile": "main",
"sourceRoot": "apps/api-gateway/src",
"compilerOptions": {
"tsConfigPath": "apps/api-gateway/tsconfig.app.json"
}
},
"books": {
"type": "application",
"root": "apps/books",
"entryFile": "main",
"sourceRoot": "apps/books/src",
"compilerOptions": {
"tsConfigPath": "apps/books/tsconfig.app.json"
}
},
"contracts": {
"type": "library",
"root": "libs/contracts",
"entryFile": "index",
"sourceRoot": "libs/contracts/src",
"compilerOptions": {
"tsConfigPath": "libs/contracts/tsconfig.lib.json"
}
},
"users": {
"type": "application",
"root": "apps/users",
"entryFile": "main",
"sourceRoot": "apps/users/src",
"compilerOptions": {
"tsConfigPath": "apps/users/tsconfig.app.json"
}
}
}
}