0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/vitest.config.mjs
2024-11-20 08:04:43 +01:00

10 lines
168 B
JavaScript

// @ts-check
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
coverage: {
exclude: ['./build', 'test'],
},
},
});