🎓 Initial commit: Math2 Platform - Plataforma de Álgebra Lineal PRO
Some checks failed
Test Suite / test-backend (push) Has been cancelled
Test Suite / test-frontend (push) Has been cancelled
Test Suite / e2e-tests (push) Has been cancelled
Test Suite / coverage-check (push) Has been cancelled

 Características:
- 45 ejercicios universitarios (Basic → Advanced)
- Renderizado LaTeX profesional
- IA generativa (Z.ai/DashScope)
- Docker 9 servicios
- Tests 123/123 pasando
- Seguridad enterprise (JWT, XSS, Rate limiting)

🐳 Infraestructura:
- Next.js 14 + Node.js 20
- PostgreSQL 15 + Redis 7
- Docker Compose completo
- Nginx + SSL ready

📚 Documentación:
- 5 informes técnicos completos
- README profesional
- Scripts de deployment automatizados

Estado: Producción lista 
This commit is contained in:
Renato
2026-03-31 11:27:11 -03:00
commit bc43c9e772
309 changed files with 84845 additions and 0 deletions

91
frontend/tsconfig.json Normal file
View File

@@ -0,0 +1,91 @@
{
"compilerOptions": {
/* Language and Environment */
"target": "ES2022",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"jsx": "preserve",
/* Modules */
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"allowJs": true,
"isolatedModules": true,
"noEmit": true,
/* Interop Constraints */
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking - Strict Mode */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
/* Completeness */
"skipLibCheck": true,
/* Path Aliases */
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
],
"@/components/*": [
"./src/components/*"
],
"@/lib/*": [
"./src/lib/*"
],
"@/hooks/*": [
"./src/hooks/*"
],
"@/store/*": [
"./src/store/*"
],
"@/types/*": [
"./src/types/*"
],
"@/styles/*": [
"./src/styles/*"
],
"@/app/*": [
"./src/app/*"
],
"@math-platform/shared-types": [
"../shared/types/src"
],
"@math-platform/shared-types/*": [
"../shared/types/src/*"
]
},
"incremental": true,
"plugins": [
{
"name": "next"
}
]
},
"include": [
"src",
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
".next",
"out",
"dist",
"build",
"**/*.test.ts",
"**/*.test.tsx",
"src/test/**/*"
]
}