Files
newsui/packages/utils/vitest.config.ts
T

14 lines
286 B
TypeScript
Raw Normal View History

2026-05-19 21:09:56 +08:00
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
exclude: ['node_modules/', 'dist/', '**/*.test.ts'],
},
},
});