mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 18:08:48 -07:00
645bd8a109
* Extract logic from Albums page - move "albums" page logic to `albums-bloc` - add types to AlbumCard custom events * Implement some album-bloc unit-tests - add libraries for testing - add album factory - changes in albums-bloc API * Add rest of albums-bloc test Cleanup and remove console logs * Refactor `isShowContextMenu` writable to derived
36 lines
712 B
JSON
36 lines
712 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"
|
|
],
|
|
"@test-data": [
|
|
"./src/test-data"
|
|
]
|
|
}
|
|
}
|
|
} |