Files
aboyko f4969dfbec Switch to DCO from CLA
Signed-off-by: aboyko <alex.boyko@broadcom.com>
2025-02-25 12:40:28 -05:00

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
}
}
]
}