React 18 + TypeScript + Vite 5 + Tailwind CSS + shadcn/ui frontend: - Multi-role auth: student, teacher, admin, corporate, agent, developer - Student portal: dashboard, courses, adaptive learning, exams, placement - Teacher portal: courses, assignments, grading, attendance, AI workbench - Admin portal: 60+ management pages (LMS, exams, users, entities, AI) - AI-powered features: study coach, generation page, gap analysis, TTS - Exam system: session, auto-save, results, grading queue - Full IELTS workflow: reading/listening/writing/speaking modules Made-with: Cursor
35 lines
680 B
JSON
35 lines
680 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
"moduleResolution": "bundler",
|
|
"noEmit": true,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"target": "ES2020",
|
|
"types": [
|
|
"vitest/globals"
|
|
],
|
|
"useDefineForClassFields": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
} |