Skip to content

Commit

Permalink
vscode settings for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Reregistered committed Feb 20, 2023
1 parent 9c204cb commit 8c44d97
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,25 @@
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
"configurations": [
{
"name": "Electron Main",
"program": "${workspaceFolder}/main.js",
"request": "launch",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
"skipFiles": [
"<node_internals>/**"
],
"skipFiles": ["<node_internals>/**"],
"type": "node"
},
{
"name": "Debug App (Edge)",
"name": "Debug App (Chrome)",
"request": "launch",
"type": "edge",
"type": "chrome",
"url": "${workspaceFolder}/index.html",
"webRoot": "${workspaceFolder}",
"runtimeArgs": [],
},
]
}
"runtimeArgs": [
"--disable-web-security",
"--js-flags='--max_old_space_size=8192'"
]
}
]
}

0 comments on commit 8c44d97

Please sign in to comment.