11 lines
240 B
TypeScript
11 lines
240 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
export default defineConfig({
|
|
test: {
|
|
coverage: {
|
|
reporter: ['text', 'html', 'lcov'],
|
|
include: ['src/**/*.ts'],
|
|
exclude: ['src/**/*.test.ts', 'test/**'],
|
|
},
|
|
},
|
|
});
|