16 lines
280 B
TypeScript
16 lines
280 B
TypeScript
// vitest.config.ts
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
root: "./",
|
|
test: {
|
|
projects: [
|
|
"bench",
|
|
"packages/*",
|
|
"tests/browser-integration",
|
|
"tests/cloudflare-workers",
|
|
],
|
|
maxConcurrency: 5,
|
|
},
|
|
});
|