Files
hono-netdi/vitest.config.ts
T

15 lines
327 B
TypeScript
Raw Normal View History

2025-05-24 16:40:55 -05:00
import { defineConfig } from 'vitest/config';
import swc from 'unplugin-swc';
export default defineConfig({
test: {
environment: 'node',
coverage: {
provider: 'istanbul',
2025-05-24 22:14:17 -05:00
reporter: ['text', 'html', 'json', 'lcov', 'cobertura'],
2025-05-24 16:40:55 -05:00
include: ['**/src/**/*.ts'],
},
},
plugins: [swc.vite()],
});