import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { globals: true, environment: 'node', include: ['extensions/**/__tests__/**/*.test.ts'], exclude: ['node_modules', 'dist', '.idea', '.git', '.cache'], coverage: { provider: 'v8', reporter: ['text', 'json', 'html'], exclude: ['node_modules/', '**/*.d.ts', '**/*.test.ts'], }, }, });