mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-24 00:52:24 +00:00
13 lines
292 B
TypeScript
13 lines
292 B
TypeScript
import { fileURLToPath } from "node:url";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
vscode: fileURLToPath(new URL("./test/vscode-mock.ts", import.meta.url)),
|
|
},
|
|
},
|
|
test: {
|
|
include: ["test/**/*.test.ts"],
|
|
},
|
|
});
|