-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest-cli.json
57 lines (57 loc) · 1.4 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
50
51
52
53
54
55
56
57
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/main/src",
"monorepo": true,
"root": "apps/main",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/main/tsconfig.app.json"
},
"projects": {
"dispenser": {
"type": "application",
"root": "apps/dispenser",
"entryFile": "main",
"sourceRoot": "apps/dispenser/src",
"compilerOptions": {
"tsConfigPath": "apps/dispenser/tsconfig.app.json"
}
},
"bootstrap": {
"type": "library",
"root": "libs/bootstrap",
"entryFile": "index",
"sourceRoot": "libs/bootstrap/src",
"compilerOptions": {
"tsConfigPath": "libs/bootstrap/tsconfig.lib.json"
}
},
"main": {
"type": "application",
"root": "apps/main",
"entryFile": "main",
"sourceRoot": "apps/main/src",
"compilerOptions": {
"tsConfigPath": "apps/main/tsconfig.app.json"
}
},
"database": {
"type": "library",
"root": "libs/database",
"entryFile": "index",
"sourceRoot": "libs/database/src",
"compilerOptions": {
"tsConfigPath": "libs/database/tsconfig.lib.json"
}
},
"auth": {
"type": "application",
"root": "apps/auth",
"entryFile": "main",
"sourceRoot": "apps/auth/src",
"compilerOptions": {
"tsConfigPath": "apps/auth/tsconfig.app.json"
}
}
}
}