Files
http.md/vitest.config.ts
2025-05-19 21:04:32 +02:00

16 lines
315 B
TypeScript

import { defineConfig } from 'vitest/config';
const config = defineConfig({
test: {
coverage: {
reporter: ['text', 'json', 'json-summary', 'html'],
all: true,
reportOnFailure: true,
include: ['src/**/*.ts'],
exclude: ['src/cli/**/*.ts'],
},
},
});
export default config;