import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { globals: true, environment: 'node', include: ['test/**/*.spec.ts'], coverage: { provider: 'v8', include: ['src/**/*.{ts,js}'], exclude: ['src/main.ts', 'src/**/*.module.ts'], }, }, });