mirror of
https://github.com/catppuccin/website.git
synced 2026-02-05 03:37:14 +08:00
* 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
16 lines
361 B
JSON
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/*"]
|
|
}
|
|
}
|
|
}
|