aboutsummaryrefslogtreecommitdiffstats
path: root/vite.config.ts
blob: 08e3ed5caa8b903dc338014c745ca1399dbdcf58 (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}"],
	},
});