Files
llmx/sdk/typescript/vitest.config.ts

12 lines
194 B
TypeScript
Raw Normal View History

2025-09-29 13:27:13 -07:00
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
coverage: {
provider: "v8",
reporter: ["text", "lcov"],
},
},
});