Initial commit

This commit is contained in:
Laurent
2024-10-11 09:46:59 +02:00
parent 1f872369aa
commit 1b3f8f9891
15 changed files with 198 additions and 0 deletions

9
vite.config.ts Normal file
View File

@@ -0,0 +1,9 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vitest/config';
export default defineConfig({
plugins: [sveltekit()],
test: {
include: ['src/**/*.{test,spec}.{js,ts}']
}
});