import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { globals: false, environment: 'node', include: ['tests/**/*.test.ts'], coverage: { provider: 'v8', reporter: ['text', 'lcov', 'html'], include: ['src/**/*.ts'], exclude: ['src/**/*.test.ts', 'src/index.ts'], thresholds: { lines: 0, functions: 0, branches: 0, statements: 0, }, }, passWithNoTests: true, }, });