solventum-image-metadata/frontend/tsconfig.json
SamoilenkoVadym 4eaeaf998f feat(frontend): add React SPA with TypeScript
- Create React 18 + TypeScript + Vite application
- Implement Zustand state management (auth, files)
- Add Axios API client with JWT auth interceptors
- Create drag-drop file upload with react-dropzone
- Create metadata editor with validation
- Add login page with SSO support
- Configure Tailwind CSS for styling
- Setup routing with React Router

Components created:
- LoginPage - Authentication UI
- DashboardPage - Main application
- FileUploadZone - Drag-drop upload
- FileList - File list with batch operations
- FileItem - File card with metadata editor

Features:
- JWT token auto-refresh on 401
- Character counters for metadata fields
- Toast notifications for user feedback
- Responsive design with Tailwind

Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
2026-02-09 13:14:46 +00:00

21 lines
562 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}