rewrite phase 3

This commit is contained in:
2026-05-09 12:15:23 +02:00
parent 3b87b8c4e5
commit 4b42695717
16 changed files with 856 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import { defineConfig } from "vitest/config";
import react from "@vitejs/plugin-react";
import path from "path";
export default defineConfig({
plugins: [react()],
test: {
environment: "jsdom",
globals: true,
setupFiles: ["./src/test/setup.ts"],
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});