-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnest-cli.json
More file actions
130 lines (130 loc) · 3.3 KB
/
nest-cli.json
File metadata and controls
130 lines (130 loc) · 3.3 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/api/src",
"monorepo": true,
"root": "apps/api",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/api/tsconfig.app.json"
},
"projects": {
"api": {
"type": "application",
"root": "apps/api",
"entryFile": "main",
"sourceRoot": "apps/api/src",
"compilerOptions": {
"tsConfigPath": "apps/api/tsconfig.app.json"
}
},
"dialogue": {
"type": "application",
"root": "apps/dialogue",
"entryFile": "main",
"sourceRoot": "apps/dialogue/src",
"compilerOptions": {
"tsConfigPath": "apps/dialogue/tsconfig.app.json"
}
},
"gesture": {
"type": "application",
"root": "apps/gesture",
"entryFile": "main",
"sourceRoot": "apps/gesture/src",
"compilerOptions": {
"tsConfigPath": "apps/gesture/tsconfig.app.json"
}
},
"dataset": {
"type": "library",
"root": "libs/dataset",
"entryFile": "index",
"sourceRoot": "libs/dataset/src",
"compilerOptions": {
"tsConfigPath": "libs/dataset/tsconfig.lib.json"
}
},
"auth": {
"type": "application",
"root": "apps/auth",
"entryFile": "main",
"sourceRoot": "apps/auth/src",
"compilerOptions": {
"tsConfigPath": "apps/auth/tsconfig.app.json"
}
},
"keycloak-admin": {
"type": "application",
"root": "apps/keycloak",
"entryFile": "main",
"sourceRoot": "apps/keycloak/src",
"compilerOptions": {
"tsConfigPath": "apps/keycloak/tsconfig.app.json"
}
},
"detection": {
"type": "application",
"root": "apps/detection",
"entryFile": "main",
"sourceRoot": "apps/detection/src",
"compilerOptions": {
"tsConfigPath": "apps/detection/tsconfig.app.json"
}
},
"session": {
"type": "application",
"root": "apps/session",
"entryFile": "index",
"sourceRoot": "apps/session/src",
"compilerOptions": {
"tsConfigPath": "apps/session/tsconfig.lib.json"
}
},
"edge": {
"type": "application",
"root": "apps/edge",
"entryFile": "main",
"sourceRoot": "apps/edge/src",
"compilerOptions": {
"tsConfigPath": "apps/edge/tsconfig.app.json"
}
},
"app": {
"type": "application",
"root": "apps/platform",
"entryFile": "main",
"sourceRoot": "apps/platform/src",
"compilerOptions": {
"tsConfigPath": "apps/platform/tsconfig.app.json"
}
},
"ui": {
"type": "application",
"root": "apps/ui",
"entryFile": "main",
"sourceRoot": "apps/ui/src",
"compilerOptions": {
"tsConfigPath": "apps/ui/tsconfig.app.json"
}
},
"robotics": {
"type": "application",
"root": "apps/robotics",
"entryFile": "main",
"sourceRoot": "apps/robotics/src",
"compilerOptions": {
"tsConfigPath": "apps/robotics/tsconfig.app.json"
}
},
"xr": {
"type": "application",
"root": "apps/xr",
"entryFile": "main",
"sourceRoot": "apps/xr/src",
"compilerOptions": {
"tsConfigPath": "apps/xr/tsconfig.app.json"
}
}
}
}