diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 9c975627c25..6a02e3c1819 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -14,7 +14,7 @@ // https://github.com/microsoft/vscode/issues/93001 "label": "gulp: tests", "type": "npm", - "script": "build:tests -- --no-typecheck", + "script": "build:tests:notypecheck", "group": "build", "hide": true, "problemMatcher": [ @@ -44,7 +44,7 @@ { "label": "npm: build:tests", "type": "npm", - "script": "build:tests -- --no-typecheck", + "script": "build:tests:notypecheck", "group": "build", "problemMatcher": [ "$tsc" diff --git a/package.json b/package.json index dd04e4f08c6..f342d648dda 100644 --- a/package.json +++ b/package.json @@ -86,6 +86,7 @@ "build": "npm run build:compiler && npm run build:tests", "build:compiler": "hereby local", "build:tests": "hereby tests", + "build:tests:notypecheck": "hereby tests --no-typecheck", "start": "node lib/tsc", "clean": "hereby clean", "gulp": "hereby",