| 12345678910111213141516171819 |
- import { defineConfig } from 'vitest/config';
- export default defineConfig({
- test: {
- globals: true,
- environment: 'node',
- include: ['tests/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
- coverage: {
- provider: 'v8',
- reporter: ['text', 'json', 'html'],
- exclude: [
- 'tests/**',
- '**/*.d.ts',
- '**/*.config.*',
- '**/dist/**'
- ]
- }
- }
- });
|