This commit is contained in:
Will Greenberg
2024-10-10 11:55:13 -07:00
parent 99676f1590
commit a269a45244
19 changed files with 3684 additions and 0 deletions

9
bin/web/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}']
}
});