Skip to content

Commit 4413e29

Browse files
authored
Merge pull request #3761 from github/koesie10/fix-check-types
Fix check-types command
2 parents 7e4180b + 658f87b commit 4413e29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1963,7 +1963,7 @@
19631963
"generate": "npm-run-all -p generate:*",
19641964
"generate:schemas": "vite-node scripts/generate-schemas.ts",
19651965
"generate:chromium-version": "vite-node scripts/generate-chromium-version.ts",
1966-
"check-types": "find . -type f -name \"tsconfig.json\" -not -path \"./node_modules/*\" | sed -r 's|/[^/]+$||' | sort | uniq | xargs -I {} sh -c \"echo Checking types in {} && cd {} && npx tsc --noEmit\"",
1966+
"check-types": "find . -type f -name \"tsconfig.json\" -not -path \"./node_modules/*\" -not -path \"./.vscode-test/*\" | sed -r 's|/[^/]+$||' | sort | uniq | xargs -I {} sh -c \"echo Checking types in {} && cd {} && npx tsc --noEmit\"",
19671967
"postinstall": "patch-package",
19681968
"prepare": "cd ../.. && husky"
19691969
},

0 commit comments

Comments
 (0)