b9699bfb8f
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
11 lines
308 B
TypeScript
11 lines
308 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
include: ["server/**/*.test.ts", "shared/**/*.test.ts", "client/**/*.test.ts"],
|
|
environment: "node",
|
|
},
|
|
resolve: { alias: { "@shared": new URL("./shared", import.meta.url).pathname } },
|
|
});
|