vitest.config.components.ts 295 B

123456789101112131415
  1. import tsconfigPaths from 'vite-tsconfig-paths';
  2. import { defineConfig } from 'vitest/config';
  3. export default defineConfig({
  4. plugins: [
  5. tsconfigPaths(),
  6. ],
  7. test: {
  8. globals: true,
  9. environment: 'happy-dom',
  10. include: [
  11. '**/*.test.tsx', '**/*.test.jsx',
  12. ],
  13. },
  14. });