Skip to content

Commit 6327931

Browse files
authored
create special --no-typecheck script (#51830)
1 parent f0f415b commit 6327931

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.vscode/tasks.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// https://github.com/microsoft/vscode/issues/93001
1515
"label": "gulp: tests",
1616
"type": "npm",
17-
"script": "build:tests -- --no-typecheck",
17+
"script": "build:tests:notypecheck",
1818
"group": "build",
1919
"hide": true,
2020
"problemMatcher": [
@@ -44,7 +44,7 @@
4444
{
4545
"label": "npm: build:tests",
4646
"type": "npm",
47-
"script": "build:tests -- --no-typecheck",
47+
"script": "build:tests:notypecheck",
4848
"group": "build",
4949
"problemMatcher": [
5050
"$tsc"

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@
8686
"build": "npm run build:compiler && npm run build:tests",
8787
"build:compiler": "hereby local",
8888
"build:tests": "hereby tests",
89+
"build:tests:notypecheck": "hereby tests --no-typecheck",
8990
"start": "node lib/tsc",
9091
"clean": "hereby clean",
9192
"gulp": "hereby",

0 commit comments

Comments
 (0)