From ef99c0fd79e5eed892e3785365eb2b2f5832381f Mon Sep 17 00:00:00 2001 From: Steven Serrata Date: Thu, 26 Mar 2026 09:58:05 -0400 Subject: [PATCH] fix(scripts): resolve tsconfig errors in check-pr-title workflow Set rootDir to "." to fix TS5011 (common source directory conflict when including both scripts/ and demo/) and set target to ES2019 to fix TS5107 (ts-node's default ES5 target is deprecated in TypeScript 7.0). Co-Authored-By: Claude Sonnet 4.6 --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 42f867cfc..3397bdd85 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,7 @@ { "compilerOptions": { + "rootDir": ".", + "target": "ES2019", "resolveJsonModule": true, "esModuleInterop": true, "noEmit": true,