mirror of
https://github.com/Trollobot/Telemax.git
synced 2026-08-29 06:31:39 +00:00
Two-way message/media bridge between MAX and Telegram forum topics, with group management, polls, calls, forwarding, and admin commands (/help, /reboot, /kill, /donate) from Telegram. Includes one-command install (install.sh) and interactive first-run setup (setup.sh) for a bare Ubuntu server.
18 lines
450 B
JSON
18 lines
450 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["ES2022"],
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "dist",
|
|
"rootDir": ".",
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src", "scripts", "tests"],
|
|
"exclude": ["src/App.tsx", "src/main.tsx", "src/api.ts"]
|
|
}
|