monofile/.vscode/tasks.json

23 lines
414 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"command":"npm run build",
"group": {
"kind": "build",
"isDefault": true
},
"label": "Build (Bot Server)"
},
{
"type": "shell",
"command":"npm run build\nnode ./out/server/index.js\ndel ./out/* -Recurse",
"group": {
"kind": "build",
"isDefault": true
},
"label": "Build & Test"
}
]
}