mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 14:49:39 +02:00
New lightweight server replacing NestJS for server-side compute: - RRULE expansion (next occurrence, validation, DoS protection) - Reminders (CRUD with reminder time calculation) - Admin (GDPR user data counts + deletion) - JWT auth middleware + service key auth for admin - Port 3019, ~10 packages vs ~50 for NestJS Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
16 lines
339 B
JSON
16 lines
339 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["ES2022"],
|
|
"types": ["bun-types"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|