mirror of
https://github.com/immich-app/immich.git
synced 2024-11-24 08:52:28 +02:00
9a6dfacf9b
* Refactor main index page * Refactor admin page * Refactor Auth endpoint * Refactor directory to prep for monorepo * Fixed refactoring path * Resolved file path in vite * Refactor photo index page * Refactor thumbnail * Fixed test * Refactor Video Viewer component * Refactor download file * Refactor navigation bar * Refactor upload file check * Simplify Upload Asset signature * PR feedback
27 lines
602 B
JSON
27 lines
602 B
JSON
{
|
|
"extends": "./.svelte-kit/tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": [
|
|
"es2020",
|
|
"DOM"
|
|
],
|
|
"moduleResolution": "node",
|
|
"module": "es2020",
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "es2020",
|
|
"importsNotUsedAsValues": "preserve",
|
|
"preserveValueImports": false,
|
|
"paths": {
|
|
"$lib": ["src/lib"],
|
|
"$lib/*": ["src/lib/*"],
|
|
"@api": ["src/api"]
|
|
}
|
|
},
|
|
} |