Transparent-Twitch-Chat/.vscode/tasks.json

24 lines
624 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build Userscript",
"type": "shell",
"command": "python ./BUILD.py",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "dedicated",
"echo": true,
"focus": true,
"showReuseMessage": false
}
}
]
}