work-it-out/.vscode/tasks.json

20 lines
293 B
JSON
Raw Permalink Normal View History

2024-09-01 23:42:25 +02:00
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"isBackground": true,
"script": "dev",
"problemMatcher": [
"$tsc-watch",
],
"label": "npm: dev",
"detail": "webpack serve --mode development",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}