blob: ba60b3c2b2675c087d8578e4cabda3c059c2f547 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
include: ["tests/**/*.test.ts"],
server: {
deps: {
// Force inline resolution for packages that break under Bun's
// .bun/ symlink layout in Docker environments
inline: ["zod"],
},
},
},
});
|