Files
triggerdotdev--trigger.dev/apps/webapp/evalite.config.ts
T
Dan cd252801eb feat: dashboard agent - package upgrades (#3793)
1. in webapp folder update ai-sdk to 6.x.x
2. update vitest to 4.xx
2026-06-02 10:46:34 +01:00

13 lines
510 B
TypeScript

import { defineConfig } from "evalite/config";
import tsconfigPaths from "vite-tsconfig-paths";
// evalite 1.0 runs its own Vite instance and does not pick up `vitest.config.ts`,
// so the `~/*` -> `./app/*` path alias must be wired in explicitly here (mirrors
// the plugin setup in vitest.config.ts).
export default defineConfig({
viteConfig: {
// @ts-ignore - vite-tsconfig-paths plugin type vs evalite's bundled vite version
plugins: [tsconfigPaths({ projects: ["./tsconfig.json"] })],
},
});