This repository was archived by the owner on Mar 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnest-cli.json
More file actions
57 lines (57 loc) · 1.42 KB
/
Copy pathnest-cli.json
File metadata and controls
57 lines (57 loc) · 1.42 KB
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/manager/src",
"monorepo": true,
"root": "apps/manager",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/manager/tsconfig.app.json"
},
"projects": {
"manager": {
"type": "application",
"root": "apps/manager",
"entryFile": "main",
"sourceRoot": "apps/manager/src",
"compilerOptions": {
"tsConfigPath": "apps/manager/tsconfig.app.json"
}
},
"process": {
"type": "application",
"root": "apps/process",
"entryFile": "main",
"sourceRoot": "apps/process/src",
"compilerOptions": {
"tsConfigPath": "apps/process/tsconfig.app.json"
}
},
"relay": {
"type": "application",
"root": "apps/relay",
"entryFile": "main",
"sourceRoot": "apps/relay/src",
"compilerOptions": {
"tsConfigPath": "apps/relay/tsconfig.app.json"
}
},
"shared": {
"type": "library",
"root": "libs/shared",
"entryFile": "index",
"sourceRoot": "libs/shared/src",
"compilerOptions": {
"tsConfigPath": "libs/shared/tsconfig.lib.json"
}
},
"datasource": {
"type": "library",
"root": "libs/datasource",
"entryFile": "index",
"sourceRoot": "libs/datasource/src",
"compilerOptions": {
"tsConfigPath": "libs/datasource/tsconfig.lib.json"
}
}
}
}