mirror of
https://github.com/vitest-dev/vitest.git
synced 2026-02-01 17:36:51 +00:00
9 lines
178 B
TypeScript
9 lines
178 B
TypeScript
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
includes: ['test/**/*.test.ts'],
|
|
excludes: ['**/node_modules/**', '**/fixtures/**'],
|
|
},
|
|
})
|