monofile/.vscode/tasks.json

23 lines
446 B
JSON
Raw Normal View History

2022-09-26 22:09:38 -07:00
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
2023-01-27 15:01:28 -08:00
"command":"tsc\nsass src/style:out/style\nrollup -c",
2022-09-26 22:09:38 -07:00
"group": {
"kind": "build",
"isDefault": true
},
"label": "Build (Bot Server)"
},
{
"type": "shell",
2023-01-28 01:33:33 -08:00
"command":"tsc\nsass src/style:out/style\nrollup -c\nnode ./out/server/index.js\ndel ./out/* -Recurse",
2022-09-26 22:09:38 -07:00
"group": {
"kind": "build",
"isDefault": true
},
"label": "Build & Test"
}
]
}