Matrix/Webserver/vite.config.ts

11 lines
242 B
TypeScript
Raw Normal View History

2023-11-23 12:22:59 +00:00
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vitest/config';
export default defineConfig({
plugins: [sveltekit()],
test: {
2023-11-23 12:24:38 +00:00
include: ['src/**/*.{test,spec}.{js,ts}'],
exclude: ['src/playwright']
2024-02-28 10:39:37 +00:00
},
2023-11-23 12:22:59 +00:00
});