9d93ccca19
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: "node",
|
|
include: ["test/**/*.test.ts"],
|
|
exclude: ["test/e2e/**", "node_modules/**"],
|
|
},
|
|
});
|