mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 22:51:59 +00:00
76bf1c0379
* Remove thumbnail generation on mobile * Remove tconditions for missing thumbnail on the backend * Remove console.log * Refactor queue systems * Convert queue and processor name to constant * Added corresponding interface to job queue
48 lines
No EOL
1.2 KiB
JSON
48 lines
No EOL
1.2 KiB
JSON
{
|
|
"collection": "@nestjs/schematics",
|
|
"sourceRoot": "apps/immich/src",
|
|
"monorepo": true,
|
|
"root": "apps/immich",
|
|
"compilerOptions": {
|
|
"webpack": false,
|
|
"tsConfigPath": "apps/immich/tsconfig.app.json"
|
|
},
|
|
"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"
|
|
}
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
} |