respira/vitest.config.ts
copilot-swe-agent[bot] a828bf4c8f feature: Add InfoCard shared component with tests
Co-authored-by: jhbruhn <1036566+jhbruhn@users.noreply.github.com>
2025-12-27 16:55:24 +00:00

15 lines
302 B
TypeScript

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