import { defineConfig } from 'vitest/config' // https://vitest.dev/config/ - for docs export default defineConfig({ test: { include: ['src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'], coverage: { reporter: ['text', 'json-summary', 'json'], lines: 85.6, functions: 100, branches: 93.75, statements: 85.6, thresholdAutoUpdate: true, }, }, })