- Added 97 tools across 15 domains (jobs, clients, quotes, invoices, scheduling, team, expenses, products, requests, reporting, properties, timesheets, line-items, forms, taxes) - Created 15 React apps with dark theme (job-board, job-detail, client-dashboard, client-detail, quote-builder, invoice-dashboard, schedule-calendar, visit-tracker, expense-manager, timesheet-grid, request-inbox, form-builder, property-map, financial-dashboard, team-overview) - Each app includes App.tsx, index.html, main.tsx, vite.config.ts - Updated tsconfig.json with jsx: react-jsx - Created main.ts entry point - Updated server.ts to include all tool domains - Comprehensive README with full documentation - TypeScript compilation passes cleanly
4 lines
183 B
TypeScript
4 lines
183 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
export default defineConfig({ plugins: [react()], server: { port: 3005 }, build: { outDir: 'dist' } });
|