Roo-Code/packages/telegram-bridge/tsconfig.json
Roo Code c7d31ae5d0 feat: add Telegram Bridge MCP Server for remote control of Roo Code
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
2026-02-02 01:07:59 +00:00

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"]
}