mirror of
https://github.com/iconify/iconify.git
synced 2024-11-08 14:20:57 +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$/],
|
|
},
|
|
},
|
|
});
|