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

export default defineConfig({
	plugins: [sveltekit()],

	test: {
		include: ['src/**/*.{test,spec}.{js,ts}']
	}
});