mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 18:08:48 -07:00
9807f76aff
* fix(web): use id instead of assetId * chore(web): improve type checking * fix test jobs * improve type checking and resolve errors
35 lines
670 B
JSON
35 lines
670 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",
|
|
"preserveValueImports": false,
|
|
"paths": {
|
|
"$lib": [
|
|
"./src/lib"
|
|
],
|
|
"$lib/*": [
|
|
"./src/lib/*"
|
|
],
|
|
"@api": [
|
|
"./src/api"
|
|
],
|
|
"@test-data": [
|
|
"./src/test-data"
|
|
]
|
|
}
|
|
}
|
|
} |