openova/products/catalyst/bootstrap/ui/tsconfig.app.json
Emrah Baysal 3e3f9428ff feat(catalyst): Bootstrap UI — full wizard, auth, dashboard, provision, success
Complete React 18 + TypeScript + Tailwind v4 UI for OpenOva Catalyst Bootstrap.

Architecture:
- Feature-Sliced Design (FSD): app/, pages/, widgets/, features/, entities/, shared/
- TanStack Router (type-safe), TanStack Query, Zustand wizard store
- React Hook Form + Zod validation on every form
- Framer Motion animated step transitions and micro-interactions
- Dark-first design system with Tailwind v4 CSS custom properties

Pages:
- Auth: Login, Signup, Forgot Password (SaaS mode)
- Dashboard: deployment list with status badges and stats
- Wizard: 6-step animated wizard (Org → Provider → Credentials →
  Infrastructure → Components → Review)
- Provision: real-time SSE log stream with phase tracker and progress bar
- Success: kubeconfig download, service URLs, next-steps guide

Shared UI:
- Button, Input, Badge, Card, Separator, Tooltip, Checkbox, Switch,
  Progress, Dialog, DropdownMenu, Select, Avatar (all owned, Radix primitives)

Widgets:
- StepIndicator with animated connectors and completion state
- CloudProviderCard with coming-soon state and tooltip

Features:
- Two runtime modes: saas (full auth) and selfhosted (direct to wizard)
- Live credential validation UX with feedback states
- Component dependency enforcement with tooltip explanations
- Cost estimate per region derived from Hetzner node size selection
- Cluster context names auto-derived from naming convention (NAMING-CONVENTION.md)

Builds clean: tsc -b + vite build, 34KB CSS, 723KB JS (pre-split)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-19 12:34:03 +01:00

33 lines
799 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2023",
"useDefineForClassFields": true,
"lib": ["ES2023", "DOM", "DOM.Iterable"],
"module": "ESNext",
"types": ["vite/client"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src"]
}