mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
10 lines
154 B
JavaScript
10 lines
154 B
JavaScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
projects: [
|
|
"packages/*/vitest.config.mjs",
|
|
]
|
|
},
|
|
})
|