-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathnest-cli.json
More file actions
30 lines (30 loc) · 718 Bytes
/
nest-cli.json
File metadata and controls
30 lines (30 loc) · 718 Bytes
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
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/server/src",
"monorepo": true,
"root": "apps/server",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/server/tsconfig.app.json"
},
"projects": {
"server": {
"type": "application",
"root": "apps/server",
"entryFile": "main",
"sourceRoot": "apps/server/src",
"compilerOptions": {
"tsConfigPath": "apps/server/tsconfig.app.json"
}
},
"client": {
"type": "application",
"root": "apps/client",
"entryFile": "main",
"sourceRoot": "apps/client/src",
"compilerOptions": {
"tsConfigPath": "apps/client/tsconfig.app.json"
}
}
}
}