Files
action-gh-release/vitest.config.ts
T

12 lines
214 B
TypeScript
Raw Normal View History

2025-06-09 20:59:28 -04:00
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'node',
coverage: {
reporter: ['text', 'lcov'],
},
include: ['__tests__/**/*.ts'],
},
});