import { defineConfig } from 'vitest/config' import react from '@vitejs/plugin-react' export default defineConfig({ plugins: [react()], // Use the automatic JSX runtime in the test transform so components (and // tests) need no `import React` — matching the app build's plugin-react. esbuild: { jsx: 'automatic', jsxImportSource: 'react' }, test: { environment: 'jsdom', globals: true, setupFiles: ['./src/test/setup.js'], include: ['src/**/*.test.{js,jsx}'], }, })