forked from immich-app/immich
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnest-cli.json
More file actions
111 lines (111 loc) · 2.76 KB
/
nest-cli.json
File metadata and controls
111 lines (111 loc) · 2.76 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
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/immich/src",
"monorepo": true,
"root": "apps/immich",
"compilerOptions": {
"webpack": false,
"tsConfigPath": "apps/immich/tsconfig.app.json",
"plugins": [
{
"name": "@nestjs/swagger",
"options": {
"classValidatorShim": false,
"introspectComments": true
}
}
]
},
"projects": {
"immich": {
"type": "application",
"root": "apps/immich",
"entryFile": "main",
"sourceRoot": "apps/immich/src",
"compilerOptions": {
"tsConfigPath": "apps/immich/tsconfig.app.json"
}
},
"microservices": {
"type": "application",
"root": "apps/microservices",
"entryFile": "main",
"sourceRoot": "apps/microservices/src",
"compilerOptions": {
"tsConfigPath": "apps/microservices/tsconfig.app.json"
}
},
"cli": {
"type": "application",
"root": "apps/cli",
"entryFile": "immich",
"sourceRoot": "apps/cli/src",
"compilerOptions": {
"tsConfigPath": "apps/cli/tsconfig.app.json"
}
},
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
},
"database": {
"type": "library",
"root": "libs/database",
"entryFile": "index",
"sourceRoot": "libs/database/src",
"compilerOptions": {
"tsConfigPath": "libs/database/tsconfig.lib.json"
}
},
"job": {
"type": "library",
"root": "libs/job",
"entryFile": "index",
"sourceRoot": "libs/job/src",
"compilerOptions": {
"tsConfigPath": "libs/job/tsconfig.lib.json"
}
},
"immich-config": {
"type": "library",
"root": "libs/immich-config",
"entryFile": "index",
"sourceRoot": "libs/immich-config/src",
"compilerOptions": {
"tsConfigPath": "libs/immich-config/tsconfig.lib.json"
}
},
"storage": {
"type": "library",
"root": "libs/storage",
"entryFile": "index",
"sourceRoot": "libs/storage/src",
"compilerOptions": {
"tsConfigPath": "libs/storage/tsconfig.lib.json"
}
},
"infra": {
"type": "library",
"root": "libs/infra",
"entryFile": "index",
"sourceRoot": "libs/infra/src",
"compilerOptions": {
"tsConfigPath": "libs/infra/tsconfig.lib.json"
}
},
"domain": {
"type": "library",
"root": "libs/domain",
"entryFile": "index",
"sourceRoot": "libs/domain/src",
"compilerOptions": {
"tsConfigPath": "libs/domain/tsconfig.lib.json"
}
}
}
}