mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
10 lines
155 B
TypeScript
10 lines
155 B
TypeScript
|
import { defineConfig } from 'vitest/config';
|
||
|
|
||
|
export default defineConfig({
|
||
|
test: {
|
||
|
coverage: {
|
||
|
exclude: ['./build', 'test'],
|
||
|
},
|
||
|
},
|
||
|
});
|