Added frequently needed scripts to the VSC config

This commit is contained in:
Kir_Antipov 2024-01-15 17:21:45 +03:00
parent c7909fdd86
commit f673bad897

23
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,23 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "codegen",
"type": "npm",
"script": "generate",
"problemMatcher": "$tsc",
},
{
"label": "build",
"type": "npm",
"script": "build",
"problemMatcher": "$tsc",
},
{
"label": "test",
"type": "npm",
"script": "test",
"problemMatcher": "$eslint-stylish",
},
],
}