mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
import { defineConfig } from "vitest/config"
|
|
import "@test/test-dep-linked/ts";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
projects: [
|
|
"browser/vitest.config.ts",
|
|
"node/vitest.config.ts",
|
|
],
|
|
},
|
|
})
|