From 658f87bbf35b9e3f7f9d1ad1a7a54fa87a5c5b6c Mon Sep 17 00:00:00 2001 From: Koen Vlaswinkel Date: Mon, 14 Oct 2024 16:46:20 +0200 Subject: [PATCH] Fix check-types command --- extensions/ql-vscode/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/ql-vscode/package.json b/extensions/ql-vscode/package.json index 8008dbb5586..d0fbe5d9854 100644 --- a/extensions/ql-vscode/package.json +++ b/extensions/ql-vscode/package.json @@ -1963,7 +1963,7 @@ "generate": "npm-run-all -p generate:*", "generate:schemas": "vite-node scripts/generate-schemas.ts", "generate:chromium-version": "vite-node scripts/generate-chromium-version.ts", - "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\"", + "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\"", "postinstall": "patch-package", "prepare": "cd ../.. && husky" },