From de8cf65d065b38b92f5c13277b99c5675ea0c212 Mon Sep 17 00:00:00 2001 From: openhands Date: Fri, 20 Mar 2026 09:54:33 +0000 Subject: [PATCH] fix: push3-evolution tsconfig rootDir too narrow for cross-project imports Widen rootDir from "." to ".." and include push3-transpiler sources so tsc can resolve the ../push3-transpiler/src imports that mutate.ts and test files use. Co-Authored-By: Claude Opus 4.6 (1M context) --- tools/push3-evolution/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/push3-evolution/tsconfig.json b/tools/push3-evolution/tsconfig.json index 37fbbf2..fa8d639 100644 --- a/tools/push3-evolution/tsconfig.json +++ b/tools/push3-evolution/tsconfig.json @@ -7,8 +7,8 @@ "esModuleInterop": true, "skipLibCheck": true, "outDir": "dist", - "rootDir": "." + "rootDir": ".." }, - "include": ["./**/*.ts"], + "include": ["./**/*.ts", "../push3-transpiler/src/**/*.ts"], "exclude": ["node_modules", "dist"] }