mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-10 22:41:14 +00:00
This PR implements the foundation for Issue #11146 - Native Telegram Bot Integration for Remote Control. Changes: - Add ApproveAsk and DenyAsk commands to IPC types - Add IPC command handlers in extension for approve/deny - Create @roo-code/telegram-bridge MCP server package - Add Telegram bot integration with approve/deny buttons - Add tests for new IPC commands The Telegram Bridge MCP Server allows users to: - Receive Roo Code messages on Telegram in real-time - Approve/reject tool operations via inline buttons - Send new instructions from Telegram - Monitor task status remotely
11 lines
272 B
JSON
11 lines
272 B
JSON
{
|
|
"extends": "@roo-code/config-typescript/base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./build",
|
|
"rootDir": "./src",
|
|
"declaration": true,
|
|
"declarationMap": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "build", "**/*.spec.ts", "**/*.test.ts"]
|
|
}
|