mcp-zero/vitest.config.js

18 lines
334 B
JavaScript
Raw Normal View History

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
exclude: [
'node_modules/',
'tests/',
'bin/',
'*.config.js',
],
},
},
});