Files
lucidia-platform/web/tsconfig.json
Alexa Louise 133a30926c Initial Lucidia Platform - AI-powered learning that actually works
The complete Lucidia education platform with:

API (FastAPI):
- Problem analysis endpoint with multi-modal input (photo, voice, text)
- AI-generated visual explanations
- Persistent user context/memory
- Practice problem generation with game-like scenarios
- Visualization generation (2D graphs, 3D models, animations)

Web (Next.js + Tailwind):
- High-converting landing page with BlackRoad brand colors
- Feature showcase with animations (Framer Motion)
- Pricing tiers (Free, Student $9.99/mo, Family $19.99/mo)
- Mobile-responsive design
- API proxy configuration

Solves the 60% problem:
- 60% of parents can't help with homework
- 40% of 4th graders below basic reading level
- $124.5B tutoring market that doesn't work

Lucidia builds understanding through:
- Visual explanations (not just answers)
- Persistent memory (remembers your journey)
- Adaptive learning (fits YOUR style)
- Contextual practice (real-world scenarios)

Ready for Railway deployment.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-30 08:52:23 -06:00

28 lines
595 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}