Files
copilotkit__copilotkit/showcase/shell/vitest.config.ts
Jordan Ritter 8714ab569b chore(showcase): apply oxfmt formatting across showcase scripts and shells
oxfmt --write normalized formatting on showcase scripts, the four shells, and the
new oxlint rule; required for the repo-root oxfmt --check CI gate.
2026-05-29 11:45:16 -07:00

17 lines
329 B
TypeScript

import { defineConfig } from "vitest/config";
import path from "node:path";
export default defineConfig({
test: {
environment: "jsdom",
globals: true,
include: ["src/**/*.test.{ts,tsx}"],
exclude: ["node_modules/**"],
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});