mirror of
https://github.com/morten-olsen/http.md.git
synced 2026-02-08 00:46:28 +01:00
16 lines
315 B
TypeScript
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;
|