import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { globals: true, environment: 'node', include: ['src/**/*.spec.ts', 'tests/**/*.spec.ts'], coverage: { provider: 'istanbul', reporter: ['text'], reportsDirectory: '', include: ['src/**/*.{ts,js}'], exclude: ['node_modules', 'tests'], }, }, });