First version mostly built

This commit is contained in:
Deven Thiel 2026-03-05 17:04:52 -05:00
parent 27bb45f7df
commit 99a3dbd73c
42 changed files with 9443 additions and 3338 deletions

24
vite.config.ts Normal file
View file

@ -0,0 +1,24 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path from 'path';
export default defineConfig({
plugins: [react()],
resolve: {
alias: { '@': path.resolve(__dirname, './src') },
},
server: {
port: 5173,
},
test: {
globals: true,
environment: 'jsdom',
setupFiles: './src/__tests__/setup.ts',
css: true,
coverage: {
provider: 'v8',
reporter: ['text', 'html'],
exclude: ['**/*.d.ts', '**/__tests__/**', '**/main.tsx'],
},
},
});