import { defineConfig } from 'vitest/config' export default defineConfig({ test: { include: ['tests/**/*.test.ts'], environment: 'node', coverage: { provider: 'v8', reporter: ['text', 'html'], include: ['src/**'], exclude: ['scripts/**', 'samples/**'] } } })