Поскольку Visual Studio Code был создан с использованием Electron, я предполагаю, что launch.json может быть настроен для правильного запуска приложения с помощью Electron. Но я еще не понял, как это сделать.
Кроме того, поскольку Electron основан на io.js, сам основан на Node.js, я думаю, возможно... это можно сделать, но пока не нашли волшебство.
Пробовал что-то в этом направлении... snippet from launch.json:
"configurations": [
{
// Name of configuration; appears in the launch configuration drop down menu.
"name": "Launch Electron",
// Type of configuration. Possible values: "node", "mono".
"type": "node",
// Workspace relative or absolute path to the program.
"program": "Y:\\dev\\electron\\electron.exe",
// Automatically stop program after launch.
"stopOnEntry": false,
// Command line arguments passed to the program.
"args": ["CrawlSpace_Electron\\"],
// Workspace relative or absolute path to the working directory of the program being debugged. Default is the current workspace.
"cwd": ".",
// Workspace relative or absolute path to the runtime executable to be used. Default is the runtime executable on the PATH.
"runtimeExecutable": null,
// Environment variables passed to the program.
"env": { }
},
Он запускает Electron, но терпит неудачу (окно исчезает слишком быстро, чтобы понять, почему именно).
Любые мысли?