552340add7
This PR implemented a virtual scroll on the web, as seen in this article. [Building the Google Photos Web UI](https://medium.com/google-design/google-photos-45b714dfbed1)
33 lines
No EOL
655 B
JSON
33 lines
No EOL
655 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"
|
|
]
|
|
}
|
|
}
|
|
} |