9 lines
153 B
TypeScript
9 lines
153 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
exclude: ['dist/**', 'node_modules/**', '.git/**'],
|
|
},
|
|
});
|
|
|