-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest-cli.json
38 lines (38 loc) · 930 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
{
"monorepo": true,
"root": "apps/server",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/server/tsconfig.app.json"
},
"projects": {
"client": {
"type": "application",
"root": "apps/client",
"entryFile": "main",
"sourceRoot": "apps/client/src",
"compilerOptions": {
"tsConfigPath": "apps/client/tsconfig.app.json"
}
},
"raspberry": {
"type": "application",
"root": "apps/raspberry",
"entryFile": "main",
"sourceRoot": "apps/raspberry/src",
"compilerOptions": {
"tsConfigPath": "apps/raspberry/tsconfig.app.json"
}
},
"server": {
"type": "application",
"root": "apps/server",
"entryFile": "main",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
}
}
}