import { defineConfig } from 'vitest/config' export default defineConfig({ test: { coverage: { // TODO: use v8 - https://github.com/vitest-dev/vitest/issues/5783 provider: 'istanbul', thresholds: { autoUpdate: true, }, }, dir: 'src', projects: ['packages/*', '!packages/bun-transpiler'], }, })