Files
netdi/vitest.config.ts
T

16 lines
383 B
TypeScript
Raw Normal View History

2025-05-10 15:26:47 -05:00
import { defineConfig } from 'vitest/config';
2025-05-11 22:29:44 -05:00
import swc from 'unplugin-swc';
2025-05-10 15:26:47 -05:00
export default defineConfig({
test: {
environment: 'node',
coverage: {
provider: 'istanbul',
2025-05-24 22:07:34 -05:00
reporter: ['text', 'html', 'json', 'lcov', 'cobertura'],
2025-05-10 15:26:47 -05:00
include: ['**/src/**/*.ts'],
exclude: ['**/src/index.ts', '**/src/server.ts'],
},
},
2025-05-11 22:29:44 -05:00
plugins: [swc.vite()],
2025-05-10 15:26:47 -05:00
});