-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest-cli.json
49 lines (49 loc) · 1.22 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
42
43
44
45
46
47
48
49
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"plugins": [
"@nestjs/swagger"
],
"deleteOutDir": true
},
"projects": {
"cabinet": {
"type": "application",
"root": "apps/cabinet",
"sourceRoot": "apps/cabinet/src",
"entryFile": "main",
"compilerOptions": {
"tsConfigPath": "apps/cabinet/tsconfig.app.json"
}
},
"rating": {
"type": "application",
"root": "apps/rating",
"sourceRoot": "apps/rating/src",
"entryFile": "main",
"compilerOptions": {
"tsConfigPath": "apps/rating/tsconfig.app.json"
}
},
"mobile": {
"type": "application",
"root": "apps/mobile",
"sourceRoot": "apps/mobile/src",
"entryFile": "main",
"compilerOptions": {
"tsConfigPath": "apps/mobile/tsconfig.app.json"
}
},
"employer": {
"type": "application",
"root": "apps/employer",
"sourceRoot": "apps/employer/src",
"entryFile": "main",
"compilerOptions": {
"tsConfigPath": "apps/employer/tsconfig.app.json"
}
}
}
}