mirror of
https://github.com/geoffsee/open-gsio.git
synced 2025-09-08 22:56:46 +00:00
12 lines
300 B
TypeScript
12 lines
300 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
// it is recommended to define a name when using inline configs
|
|
environment: 'jsdom',
|
|
projects: [
|
|
'packages/*',
|
|
"packages/cloudflare-workers/*",
|
|
]
|
|
},
|
|
}) |