diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..b15ec56 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,22 @@ +{ + "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": [] + } +] +}