mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
2f87463170
* fix(server/oauth): Handle errors from OAuth Discovery. * fix(server/oauth): Better fix for OAuth discovery error. * This doesn't break tests. * Update server/tsconfig.json Co-authored-by: Jason Rasmussen <jrasm91@gmail.com> * Revert back to the mostly original way. --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
33 lines
864 B
JSON
33 lines
864 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "Node16",
|
|
"strict": true,
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"target": "es2021",
|
|
"moduleResolution": "node16",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"preserveWatchOutput": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@test": ["test"],
|
|
"@test/*": ["test/*"],
|
|
"@app/immich": ["src/immich"],
|
|
"@app/immich/*": ["src/immich/*"],
|
|
"@app/infra": ["src/infra"],
|
|
"@app/infra/*": ["src/infra/*"],
|
|
"@app/domain": ["src/domain"],
|
|
"@app/domain/*": ["src/domain/*"]
|
|
}
|
|
},
|
|
"exclude": ["dist", "node_modules", "upload"]
|
|
}
|