zapishis-client/apps/web/vitest.config.mts
2024-12-10 18:15:51 +03:00

13 lines
333 B
TypeScript

import { defineConfig } from 'vitest/config';
import react from '@vitejs/plugin-react';
import tsconfigPaths from 'vite-tsconfig-paths';
export default defineConfig({
plugins: [tsconfigPaths(), react()],
test: {
environment: 'jsdom',
exclude: ['**/e2e/**', '**/*.spec.ts'],
include: ['**/*.test.{ts,tsx}'],
},
});