import { defineConfig } from 'vitest/config' export default defineConfig({ test: { environment: 'node', globals: true, coverage: { provider: 'v8', include: [ 'src/**/*.ts', ], reporter: [ 'text', 'json', 'html', ], thresholds: { lines: 100, functions: 100, branches: 100, statements: 100, }, }, }, })