mirror of
https://github.com/immich-app/immich.git
synced 2024-11-24 08:52:28 +02:00
c754c860fd
[Breaking] newly uploaded file will conform to the default structure of `{uploadLocation}/{userId}/year/year-month-day/filename.ext`
56 lines
1.1 KiB
JSON
56 lines
1.1 KiB
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/common": [
|
|
"libs/common/src"
|
|
],
|
|
"@app/common/*": [
|
|
"libs/common/src/*"
|
|
],
|
|
"@app/database": [
|
|
"libs/database/src"
|
|
],
|
|
"@app/database/*": [
|
|
"libs/database/src/*"
|
|
],
|
|
"@app/job": [
|
|
"libs/job/src"
|
|
],
|
|
"@app/job/*": [
|
|
"libs/job/src/*"
|
|
],
|
|
"@app/immich-config": [
|
|
"libs/immich-config/src"
|
|
],
|
|
"@app/immich-config/*": [
|
|
"libs/immich-config/src/*"
|
|
],
|
|
"@app/storage": [
|
|
"libs/storage/src"
|
|
],
|
|
"@app/storage/*": [
|
|
"libs/storage/src/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"upload"
|
|
]
|
|
} |