mirror of
https://github.com/iconify/iconify.git
synced 2024-11-08 14:20:57 +00:00
12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
import { defineConfig } from 'vitest/config';
|
|
import { svelte } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
export default defineConfig({
|
|
plugins: [svelte()],
|
|
test: {
|
|
globals: true,
|
|
watch: false,
|
|
include: ['**/tests/**/*.test.ts'],
|
|
},
|
|
});
|