zapishis-client/apps/bot/tsconfig.json
vchikalkin 89b0f0badf feat(bot): integrate Redis and update bot configuration
- Added Redis service to both docker-compose files for local development and production environments.
- Updated bot configuration to utilize the Grammy framework, replacing Telegraf.
- Implemented graceful shutdown for the bot, ensuring proper resource management.
- Refactored bot commands and removed deprecated message handling logic.
- Enhanced environment variable management for Redis connection settings.
- Updated dependencies in package.json to include new Grammy-related packages.
2025-08-21 18:24:30 +03:00

17 lines
341 B
JSON

{
"extends": "@repo/typescript-config/base.json",
"compilerOptions": {
"baseUrl": ".",
"outDir": "dist",
"alwaysStrict": true,
"strict": true,
"moduleResolution": "Node",
"module": "CommonJS",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["."],
"exclude": ["dist", "build", "node_modules"]
}