leblebijs/.vscode/tasks.json

19 lines
361 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "dev",
"problemMatcher": [],
"label": "npm: dev",
"detail": "Watch code files to auto-rebuild the library and example."
},
{
"type": "npm",
"script": "build",
"problemMatcher": [],
"label": "npm: build",
"detail": "Get an optimized build of the library."
}
]
}