vscodeのウィンドウで電子メインプロセスをデバッグできません。私は見つけることができるすべての可能なlaunch.json
構成を試しましたが、app
オブジェクトは常にundefined
です。アプリケーションが動作する、私はデバッグだけで問題があります。私のruntimeExecutable
パスが間違っているようです。私は私が私のlaunch.json
vscodeで電子をデバッグします。 runtimeExecutable
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Main Process",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/app/main.ts",
"stopOnEntry": false,
"args": ["."],
"cwd": "${workspaceRoot}",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd",
"outFiles": [
"${workspaceRoot}/dist/main.js"
],
"env": { },
"sourceMaps": true
}
]
}
ありがとうドキュメントhttps://github.com/electron/electron/blob/master/docs/tutorial/debugging-main-process-vscode.md
から、現在の構成を取ってきたhttps://discuss.atom.io/t/debugging-electron-api-demo-using-visual-studio-code/40661/2を試してみました。