MAESTRO: scaffold frontend tooling and config

This commit is contained in:
Mariusz Banach
2026-02-17 22:58:10 +01:00
parent 4140fe26bb
commit b2241a6a95
25 changed files with 8502 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "jsdom",
globals: true,
exclude: ["**/e2e/**", "**/node_modules/**", "**/.next/**", "**/dist/**"],
},
});