import { defineConfig } from 'vitest/config'

export default defineConfig({
  test: {
    globals: true,
    environment: 'node',
    include: ['src/**/__test__/**/*.test.ts', 'src/**/__tests__/**/*.test.ts'],
    coverage: {
      reporter: ['text', 'json', 'html'],
      exclude: ['node_modules/', 'src/**/__test__/**', '**/*.d.ts', '**/*.test.ts', '**/*.config.ts']
    }
  }
})