tk2312-web/.vscode/tasks.json

28 lines
460 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "npm: dev",
"detail": "start webpack-dev-server",
"type": "shell",
"command": "npm",
"group": "test",
"args": [
"run",
"dev"
],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true
},
"isBackground": true,
// 声明无需扫描脚本输出
"problemMatcher": []
}
]
}