monofile/.vscode/tasks.json
2022-09-26 22:09:38 -07:00

23 lines
380 B
JSON

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