mirror of
https://github.com/BradNut/AdelieStack
synced 2025-09-08 17:40:20 +00:00
10 lines
210 B
TypeScript
10 lines
210 B
TypeScript
|
|
import { sveltekit } from '@sveltejs/kit/vite';
|
||
|
|
import { defineConfig } from 'vitest/config';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [sveltekit()],
|
||
|
|
test: {
|
||
|
|
include: ['src/**/*.{test,spec}.{js,ts}']
|
||
|
|
}
|
||
|
|
});
|