mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
12 lines
237 B
TypeScript
12 lines
237 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
esbuild: {
|
|
jsx: "automatic",
|
|
jsxImportSource: "@copilotkit/channels",
|
|
},
|
|
test: {
|
|
include: ["app/**/*.test.ts", "app/**/*.test.tsx"],
|
|
},
|
|
});
|