BioLab/.vscode/tasks.json
Lucas Tadeu Marculino c6b6b2a828 build tasks
2025-11-24 04:48:40 -03:00

22 lines
393 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Run Cordova App (electron)",
"type": "shell",
"command": "cordova run electron",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "Build Release (electron)",
"type": "shell",
"command": "cordova build electron --release --verbose",
"group": "build",
"problemMatcher": []
}
]
}