Skip to content

Commit

Permalink
Added frequently needed scripts to the VSC config
Browse files Browse the repository at this point in the history
  • Loading branch information
Kir-Antipov committed Jan 15, 2024
1 parent c7909fd commit f673bad
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -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",
},
],
}

0 comments on commit f673bad

Please sign in to comment.