aboutsummaryrefslogtreecommitdiffstats
path: root/vite.config.ts
blob: 37b6a84bc3c41e0385e5f25470077dd302df1b79 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vitest/config';

export default defineConfig({
	plugins: [sveltekit()],
	test: {
		include: ['src/**/*.{test,spec}.{js,ts}']
	}
});