19 lines
520 B
TypeScript
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" },
|
|
},
|
|
})
|