fix: correct tsconfig.base.json extends paths for bot packages (#452)#470
fix: correct tsconfig.base.json extends paths for bot packages (#452)#470nikos1005 wants to merge 1 commit into
Conversation
…llstack#452) Use ../../../tsconfig.base.json instead of ../../tsconfig.base.json which incorrectly pointed to packages/tsconfig.base.json.
Greptile SummaryThis PR corrects the
Confidence Score: 5/5Safe to merge — the change is a mechanical correction of five identical misconfigured paths, all verified against the actual file tree. Every changed file receives the same one-line fix, the target tsconfig.base.json exists at the repo root, and the old path pointed to a file that does not exist. No logic, runtime behavior, or other configuration is touched. No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
root["/ (repo root)\ntsconfig.base.json"]
packages["packages/"]
bot["packages/bot/"]
core["packages/bot/core/\ntsconfig.json"]
discord["packages/bot/discord/\ntsconfig.json"]
signal["packages/bot/signal/\ntsconfig.json"]
telegram["packages/bot/telegram/\ntsconfig.json"]
whatsapp["packages/bot/whatsapp/\ntsconfig.json"]
root --> packages --> bot
bot --> core
bot --> discord
bot --> signal
bot --> telegram
bot --> whatsapp
core -- "../../../tsconfig.base.json ✅" --> root
discord -- "../../../tsconfig.base.json ✅" --> root
signal -- "../../../tsconfig.base.json ✅" --> root
telegram -- "../../../tsconfig.base.json ✅" --> root
whatsapp -- "../../../tsconfig.base.json ✅" --> root
old["packages/tsconfig.base.json ❌\n(does not exist)"]
core -. "../../tsconfig.base.json (old, broken)" .-> old
Reviews (1): Last reviewed commit: "fix: correct tsconfig.base.json extends ..." | Re-trigger Greptile |
Summary
Fixed the
extendspaths in bot package tsconfig files from../../tsconfig.base.jsonto../../../tsconfig.base.json.Fixes #452