/** Vitest setup for the Ollama plugin unit suite (node environment, `__tests__` + `src` test globs). */ import { defineConfig } from "vitest/config"; export default defineConfig({ test: { environment: "node", include: ["__tests__/**/*.test.ts", "src/**/*.test.ts"], exclude: ["**/node_modules/**", "**/dist/**"], }, });