mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 11:41:23 +02:00
- Add NestJS service with Telegraf for Telegram bot functionality - Implement commands: /today, /tomorrow, /week, /next, /calendars, /add - Create database schema for user linking and reminder settings - Add Calendar API client for fetching events - Implement reminder scheduler with morning briefing support - Add message formatters for German locale - Include Dockerfile and CLAUDE.md documentation - Update TELEGRAM_BOTS.md with new bot status Commands implemented: - /today, /tomorrow, /week - View events - /next [n] - View next n events - /calendars - List calendars - /remind - Reminder settings - /link, /unlink - Account management - /status - Connection status https://claude.ai/code/session_01LwmhvhKpEsvVtY1ZKhYu6f
22 lines
536 B
JSON
22 lines
536 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ES2021",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": false,
|
|
"strictBindCallApply": false,
|
|
"forceConsistentCasingInFileNames": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"esModuleInterop": true
|
|
}
|
|
}
|