Skip to content

Commit 1ab3be2

Browse files
sserrataclaude
andauthored
fix(scripts): resolve tsconfig errors in check-pr-title workflow (#1332)
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 1ab3be2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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)