import { defineConfig } from "vitest/config";

// Backend tests only — web/ has its own vitest run (npm run test:web).
export default defineConfig({
  test: {
    include: ["tests/**/*.test.{ts,js}"],
  },
});
