feat: Created base set of components

This commit is contained in:
2025-09-15 12:14:46 +01:00
parent f145eae132
commit c7050cb91e
14 changed files with 618 additions and 0 deletions

13
svelte.config.js Normal file
View File

@@ -0,0 +1,13 @@
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
export default {
preprocess: vitePreprocess(),
kit: {
package: {
dir: 'dist',
emitTypes: true,
// only export index.ts
exports: (filepath) => filepath === 'index.ts'
}
}
};