SDServer/.vscode/tasks.json
2024-08-30 15:37:33 +08:00

20 lines
309 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "npm: build",
"type": "shell",
"command": "npm",
"args": ["run", "build"],
"problemMatcher": [],
},
{
"label": "npm: start",
"type": "shell",
"command": "npm",
"args": ["start"],
"problemMatcher": [],
}
]
}