monofile/.vscode/tasks.json
split / May e1b9a14fbc i will not be finishing this
what the hell was i smoking
2023-09-24 11:58:46 -07:00

32 lines
657 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"command":"tsc\nsass src/style:out/style\nrollup -c",
"group": {
"kind": "build",
"isDefault": true
},
"label": "Build (Bot Server)"
},
{
"type": "shell",
"command":"sass src/style:out/style\nrollup -c",
"group": {
"kind": "build",
"isDefault": true
},
"label": "Build (Frontend Only)"
},
{
"type": "shell",
"command":"tsc\nsass src/style:out/style\nrollup -c\nnode ./out/server/index.js\ndel ./out/* -Recurse",
"group": {
"kind": "build",
"isDefault": true
},
"label": "Build & Test"
}
]
}