123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // {
- // // Use IntelliSense to learn about possible attributes.
- // // Hover to view descriptions of existing attributes.
- // // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- // "version": "0.2.0",
- // "configurations": [
- // {
- // "type": "node",
- // "request": "launch",
- // "name": "Launch Program",
- // "skipFiles": ["<node_internals>/**"],
- // "program": "${workspaceFolder}\\main.js",
- // "outFiles": ["${workspaceFolder}/**/*.js"]
- // }
- // ]
- // }
- {
- "version": "0.2.0",
- "configurations": [
- {
- "type": "node",
- "request": "launch",
- "name": "Electron: Main",
- "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
- "runtimeArgs": ["--remote-debugging-port=9223", "."],
- "windows": {
- "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
- }
- },
- {
- "name": "Electron: Renderer",
- "type": "chrome",
- "request": "attach",
- "port": 9223,
- "webRoot": "${workspaceFolder}",
- "timeout": 30000
- }
- ],
- "compounds": [
- {
- "name": "Electron: All",
- "configurations": ["Electron: Main", "Electron: Renderer"]
- }
- ]
- }
|