morning-words/vite.config.ts

10 lines
210 B
TypeScript
Raw Normal View History

2023-01-25 22:48:12 -05:00
import { sveltekit } from '@sveltejs/kit/vite';
2024-10-09 19:44:43 -04:00
import { defineConfig } from 'vitest/config';
2023-01-25 22:48:12 -05:00
2024-10-09 19:44:43 -04:00
export default defineConfig({
2023-01-25 22:48:12 -05:00
plugins: [sveltekit()],
test: {
include: ['src/**/*.{test,spec}.{js,ts}']
}
2024-10-09 19:44:43 -04:00
});