You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
411 B
TypeScript
18 lines
411 B
TypeScript
// frontend/vitest.config.ts
|
|
import { defineConfig } from "vitest/config";
|
|
import react from "@vitejs/plugin-react";
|
|
import path from "node:path";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
test: {
|
|
environment: "jsdom",
|
|
globals: true,
|
|
setupFiles: ["tests/setup.ts"],
|
|
include: ["tests/**/*.test.{ts,tsx}"],
|
|
},
|
|
resolve: {
|
|
alias: { "@": path.resolve(__dirname, ".") },
|
|
},
|
|
});
|