| 123456789101112131415 |
- import tsconfigPaths from 'vite-tsconfig-paths';
- import { defineConfig } from 'vitest/config';
- export default defineConfig({
- plugins: [
- tsconfigPaths(),
- ],
- test: {
- globals: true,
- environment: 'happy-dom',
- include: [
- '**/*.test.tsx', '**/*.test.jsx',
- ],
- },
- });
|