Skip to content

Commit ef99c0f

Browse files
sserrataclaude
andcommitted
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 <noreply@anthropic.com>
1 parent 7a5535e commit ef99c0f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

tsconfig.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
22
"compilerOptions": {
3+
"rootDir": ".",
4+
"target": "ES2019",
35
"resolveJsonModule": true,
46
"esModuleInterop": true,
57
"noEmit": true,

0 commit comments

Comments
 (0)