Files
CODE_ASSISTANT/2_frontend/vitest.config.ts
T
2026-09-16 17:22:14 +09:00

19 lines
520 B
TypeScript

import path from "node:path"
import react from "@vitejs/plugin-react"
import { defineConfig } from "vitest/config"
export default defineConfig({
plugins: [react()],
resolve: {
alias: { "@": path.resolve(__dirname, "./src") },
},
test: {
globals: true,
environment: "jsdom",
setupFiles: ["./src/test/setup.ts"],
typecheck: { tsconfig: "./tsconfig.test.json" },
include: ["src/**/*.test.{ts,tsx}"],
env: { VITE_API_BASE_URL: "http://localhost:8001/api/v1" },
},
})