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