import swc from "unplugin-swc"; import { defineConfig } from "vitest/config"; import path from "path"; export default defineConfig({ test: { globals: false, environment: "node", include: ["test/e2e/**/*.e2e-spec.ts"], coverage: { provider: "v8", reporter: ["text", "json", "html"], exclude: ["node_modules/", "dist/", "test/"], }, testTimeout: 30000, // E2E tests may take longer hookTimeout: 30000, server: { deps: { inline: ["@nestjs/common", "@nestjs/core"], }, }, }, resolve: { alias: { "@": path.resolve(__dirname, "./src"), }, }, plugins: [ swc.vite({ module: { type: "es6" }, }), ], });