mirror of
https://github.com/iconify/iconify.git
synced 2024-11-10 15:20:54 +00:00
15 lines
278 B
JavaScript
15 lines
278 B
JavaScript
|
import { defineConfig } from 'vitest/config';
|
||
|
import react from '@vitejs/plugin-react';
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [react()],
|
||
|
test: {
|
||
|
globals: true,
|
||
|
watch: false,
|
||
|
include: ['**/tests/*-test.{ts,tsx}'],
|
||
|
transformMode: {
|
||
|
web: [/\.[jt]sx$/],
|
||
|
},
|
||
|
},
|
||
|
});
|