task for no-implict-override-watch

This commit is contained in:
Johannes Rieken 2021-04-12 11:03:53 +02:00
parent 0803707673
commit e70d5b0aee
No known key found for this signature in database
GPG key ID: 96634B5AF12F8798

11
.vscode/tasks.json vendored
View file

@ -210,6 +210,17 @@
"group": "build",
"label": "npm: tsec-compile-check",
"detail": "node_modules/tsec/bin/tsec -p src/tsconfig.json --noEmit"
},
{
"type": "npm",
"script": "no-implicit-override-watch",
"problemMatcher": [
"$tsc-watch"
],
"group": "build",
"label": "npm: no-implicit-override-watch",
"detail": "tsc --watch -p src/tsconfig.json --noEmit --noImplicitOverride",
"isBackground": true
}
]
}