fix typescript compiler watch path inconsistency (#5155)

This commit is contained in:
bbenshalom 2025-07-08 17:40:01 +03:00 committed by GitHub
parent 08a0c897ef
commit edce187c03
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View file

@ -353,7 +353,7 @@
"vsix": "mkdirp ../bin && vsce package --no-dependencies --out ../bin",
"publish:marketplace": "vsce publish --no-dependencies && ovsx publish --no-dependencies",
"watch:bundle": "pnpm bundle --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"watch:tsc": "cd .. && tsc --noEmit --watch --project src/tsconfig.json",
"clean": "rimraf README.md CHANGELOG.md LICENSE dist mock .turbo"
},
"dependencies": {

View file

@ -13,7 +13,6 @@
"noImplicitReturns": true,
"noUnusedLocals": false,
"resolveJsonModule": true,
"rootDir": ".",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,