✨ 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 ✅
92 lines
1.9 KiB
JSON
92 lines
1.9 KiB
JSON
{
|
|
"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/**/*"
|
|
]
|
|
}
|