initial commit

This commit is contained in:
2026-03-28 22:05:24 -04:00
commit b33fce53dd
72 changed files with 16957 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { defineConfig } from 'vitest/config';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
test: {
globals: true,
environment: 'jsdom', // or "node" if you're not testing DOM
setupFiles: './src/setupTests.ts',
testTimeout: 15_000, // give extra time for real connections
hookTimeout: 15_000,
},
});