kredens/vite.config.ts

11 lines
212 B
TypeScript
Raw Normal View History

2025-01-25 21:07:06 +00:00
import { sveltekit } from "@sveltejs/kit/vite";
2025-01-25 07:50:17 +00:00
import { defineConfig } from "vitest/config";
export default defineConfig({
2025-01-25 21:07:06 +00:00
plugins: [sveltekit()],
2025-01-25 07:50:17 +00:00
2025-01-25 21:07:06 +00:00
test: {
include: ["src/**/*.{test,spec}.{js,ts}"],
2025-01-30 03:01:44 +00:00
}
2025-01-25 07:50:17 +00:00
});