mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-21 16:00:59 -05:00
Added frequently needed scripts to the VSC config
This commit is contained in:
parent
c7909fdd86
commit
f673bad897
1 changed files with 23 additions and 0 deletions
23
.vscode/tasks.json
vendored
Normal file
23
.vscode/tasks.json
vendored
Normal 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",
|
||||
},
|
||||
],
|
||||
}
|
Loading…
Reference in a new issue