feat: initial commit

This commit is contained in:
Jeffrey Wu
2026-09-07 09:57:33 +08:00
commit f39f6ac881
66 changed files with 9859 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
environmentMatchGlobs: [["apps/web/**", "jsdom"]],
setupFiles: ["./vitest.setup.ts"],
coverage: { reporter: ["text", "html"] },
},
});