Skip to content

Commit edce187

Browse files
authored
fix typescript compiler watch path inconsistency (#5155)
1 parent 08a0c89 commit edce187

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@
353353
"vsix": "mkdirp ../bin && vsce package --no-dependencies --out ../bin",
354354
"publish:marketplace": "vsce publish --no-dependencies && ovsx publish --no-dependencies",
355355
"watch:bundle": "pnpm bundle --watch",
356-
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
356+
"watch:tsc": "cd .. && tsc --noEmit --watch --project src/tsconfig.json",
357357
"clean": "rimraf README.md CHANGELOG.md LICENSE dist mock .turbo"
358358
},
359359
"dependencies": {

src/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"noImplicitReturns": true,
1414
"noUnusedLocals": false,
1515
"resolveJsonModule": true,
16-
"rootDir": ".",
1716
"skipLibCheck": true,
1817
"sourceMap": true,
1918
"strict": true,

0 commit comments

Comments
 (0)