monofile/.vscode/tasks.json
split / May 3ef9eeaf4c this code actually sucks ass
god bless anyone who reads this
1.2.1 i'll need to clean this shit up lmao
2022-12-29 17:12:44 -08:00

23 lines
373 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 ./out/* -Recurse",
"group": {
"kind": "build",
"isDefault": true
},
"label": "Build & Test"
}
]
}