chore(setup): migrate from SvelteKit to Svelte

This commit is contained in:
Ilia Mashkov
2025-12-30 18:57:58 +03:00
parent def01a2cad
commit f3315be32d
16 changed files with 79 additions and 187 deletions

View File

@@ -1,5 +1,4 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"rewriteRelativeImportExtensions": true,
"allowJs": true,
@@ -10,12 +9,16 @@
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"moduleResolution": "bundler"
"moduleResolution": "bundler",
"baseUrl": ".",
"paths": {
"$lib/*": ["./src/lib/*"]
}
},
"exclude": ["./src/lib/components/ui"]
// Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
// except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
//
// To make changes to top-level options such as include and exclude, we recommend extending
// the generated config; see https://svelte.dev/docs/kit/configuration#typescript
"exclude": [
"./src/lib/components/ui",
"svelte.config.js",
"node_modules",
"dist"
]
}