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