mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07: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
38 lines
766 B
JSON
38 lines
766 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"target": "es2017",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@app/database": [
|
|
"libs/database/src"
|
|
],
|
|
"@app/database/*": [
|
|
"libs/database/src/*"
|
|
],
|
|
"@app/job": [
|
|
"libs/job/src"
|
|
],
|
|
"@app/job/*": [
|
|
"libs/job/src/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"upload"
|
|
]
|
|
} |