create special --no-typecheck script (#51830)

This commit is contained in:
Gabriela Araujo Britto
2022-12-08 22:04:58 -03:00
committed by GitHub
parent f0f415b671
commit 6327931d4f
2 changed files with 3 additions and 2 deletions

4
.vscode/tasks.json vendored
View File

@@ -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"

View File

@@ -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",