Files
hono-netdi/vitest.config.ts
T

16 lines
350 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',
reporter: ['text', 'html', 'json', 'lcov'],
include: ['**/src/**/*.ts'],
exclude: ['**/src/index.ts'],
},
},
plugins: [swc.vite()],
});