Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: vscode debug #496

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

fix: vscode debug #496

wants to merge 1 commit into from

Conversation

dlt1111
Copy link

@dlt1111 dlt1111 commented Sep 11, 2024

Fix: debug by vscode

The library execa was used error about params

This PR fixes #474

@dlt1111
Copy link
Author

dlt1111 commented Sep 11, 2024

Fix: debug by vscode

The library execa was used error about params

This PR fixes #474

launch.json

{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "main",
      "type": "node",
      "request": "attach",
      "port": 9292,
      "skipFiles": ["<node_internals>/**"],
      "sourceMaps": true,
      "localRoot": "${workspaceFolder}"
    },
    {
      "name": "renderer",
      "type": "chrome",
      "request": "attach",
      "port": 5858,
      "urlFilter": "http://localhost:*",
      "webRoot": "${workspaceFolder}/renderer",
      "sourceMaps": true
    }
  ],
  "compounds": [
    {
      "name": "all",
      "configurations": ["main", "renderer"]
    }
  ]
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

vscode debug not work
1 participant