SDServer/.vscode/tasks.json

20 lines
309 B
JSON
Raw Normal View History

2024-08-24 15:29:04 +00:00
{
"version": "2.0.0",
"tasks": [
{
"label": "npm: build",
"type": "shell",
"command": "npm",
"args": ["run", "build"],
2024-08-30 07:37:33 +00:00
"problemMatcher": [],
2024-08-24 15:29:04 +00:00
},
{
"label": "npm: start",
"type": "shell",
"command": "npm",
"args": ["start"],
2024-08-30 07:37:33 +00:00
"problemMatcher": [],
2024-08-24 15:29:04 +00:00
}
]
}