langtoncant/.vscode/tasks.json
Bjorn Einar Bjarntes 5c4e702999 a lot
2021-12-18 11:14:37 +01:00

26 lines
No EOL
635 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"options": {
"env": {
"ELECTRON_RUN_AS_NODE": "1"
}
},
"tasks": [
{
"label": "Build",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"windows": {
"command": "\"${workspaceFolder}/mk.bat\""
},
"linux": {
"command": "sh \"${workspaceFolder}/mk.sh\""
}
}
]
}