monofile/.vscode/tasks.json

23 lines
414 B
JSON
Raw Normal View History

2023-02-26 10:47:03 -08:00
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"command":"npm run build",
2023-02-26 10:47:03 -08:00
"group": {
"kind": "build",
"isDefault": true
},
"label": "Build (Bot Server)"
},
{
"type": "shell",
"command":"npm run build\nnode ./out/server/index.js\ndel ./out/* -Recurse",
2023-02-26 10:47:03 -08:00
"group": {
"kind": "build",
"isDefault": true
},
"label": "Build & Test"
}
]
2022-09-26 22:09:38 -07:00
}