blob: 1563558648182c33acb52e2cc35b5c88e8034aed (
plain)
1
2
3
4
5
6
7
|
import { configDefaults, defineConfig } from 'vitest/config';
export default defineConfig({
test: {
exclude: [...configDefaults.exclude, '*.db', 'GNUmakefile', 'LICENSE', '.eslintrc.json'],
},
});
|