langtoncant/.vscode/tasks.json

26 lines
635 B
JSON
Raw Permalink Normal View History

2021-12-18 11:14:37 +01:00
{
2021-12-23 02:37:02 +01:00
// 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\""
}
}
]
2021-12-18 11:14:37 +01:00
}