import path from "path" import { defineConfig } from "vitest/config" export default defineConfig({ resolve: { alias: { "@": path.resolve(__dirname, "src"), }, }, test: { globals: true, environment: "node", watch: false, testTimeout: 120_000, // 2m for integration tests. include: ["src/**/*.test.ts", "src/**/*.test.tsx"], }, })