58 lines
910 B
JSON
58 lines
910 B
JSON
{
|
|
"version": "2.0.0",
|
|
"command": "npm",
|
|
"args": [
|
|
"run"
|
|
],
|
|
"tasks": [
|
|
{
|
|
"label": "compile",
|
|
"type": "shell",
|
|
"command": "npm",
|
|
"args": [
|
|
"run",
|
|
"compile"
|
|
],
|
|
"problemMatcher": [],
|
|
"group": {
|
|
"_id": "build",
|
|
"isDefault": false
|
|
}
|
|
},
|
|
{
|
|
"label": "clean",
|
|
"type": "shell",
|
|
"command": "npm",
|
|
"args": [
|
|
"run",
|
|
"clean"
|
|
],
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "lint",
|
|
"type": "shell",
|
|
"command": "npm",
|
|
"args": [
|
|
"run",
|
|
"lint"
|
|
],
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "test",
|
|
"type": "shell",
|
|
"command": "npm",
|
|
"args": [
|
|
"run",
|
|
"test"
|
|
],
|
|
"problemMatcher": [],
|
|
"group": {
|
|
"_id": "test",
|
|
"isDefault": false
|
|
}
|
|
}
|
|
]
|
|
}
|