nodes/packages/ui/vite.config.ts

10 lines
215 B
TypeScript
Raw Normal View History

2024-04-04 19:17:27 +02:00
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vitest/config';
export default defineConfig({
2024-04-30 14:20:12 +02:00
plugins: [sveltekit()],
test: {
include: ['src/**/*.{test,spec}.{js,ts}']
}
2024-04-04 19:17:27 +02:00
});