30 lines
714 B
JSON
30 lines
714 B
JSON
|
{
|
||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||
|
// for the documentation about the tasks.json format
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "Watch and Compile Project",
|
||
|
"type": "shell",
|
||
|
"command": "npm",
|
||
|
"args": ["--silent", "run", "build:watch"],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
},
|
||
|
"problemMatcher": "$tsc-watch"
|
||
|
},
|
||
|
{
|
||
|
"label": "Build, Test and Lint",
|
||
|
"type": "shell",
|
||
|
"command": "npm",
|
||
|
"args": ["--silent", "run", "test:dev"],
|
||
|
"group": {
|
||
|
"kind": "test",
|
||
|
"isDefault": true
|
||
|
},
|
||
|
"problemMatcher": ["$tsc", "$eslint-compact", "$eslint-stylish"]
|
||
|
}
|
||
|
]
|
||
|
}
|