website/tsconfig.json
Hammy b2e494a514
feat: migrate to astro/svelte v5 (again) (#116)
* wip: upgrade deps & fix content collections

* chore: redo layouts and colocate laptop illustration

* wip: co-locate all components

* chore: rename component

* wip: run svelte migration script

* wip: migrate clipboard button to svelte 5

* wip: a lot of refactoring

* feat: add generic svelte icon component

* chore: add lucide icons / more refactoring

* refactor: remove svelte fragment

* feat: let there be a light pepperjack

* chore: update icons.json

* refactor: use svelte 5 runes & correctly apply global css

* chore: be consisten with props

* fix: latte pepperjack

* fix: load static icons using `html` svelte tag

* chore: remove icon component
2024-12-10 17:54:20 +00:00

16 lines
361 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"strictNullChecks": true,
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"],
"@data/*": ["src/data/*"],
"@styles/*": ["src/styles/*"]
}
}
}