- 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.
17 lines
341 B
JSON
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"]
|
|
}
|