Skip to content

Add a default launch.json file in the default template to ease VSCode debugging #1437

@javiertoledo

Description

@javiertoledo

Feature Request

Add a .vscode/launch.json file to the default project template to ease out-of-the-box debugging in VSCode

This is the configuration we generally use to start a debug session:

{
  "version": "0.2.0",
  "configurations": [
    // Runs npx boost -e local
    {
      "command": "npm run build && npx boost start -e local",
      "name": "Start Debug Server",
      "request": "launch",
      "type": "node-terminal",
      "cwd": "${workspaceFolder}"
    },
  ]
}

Metadata

Metadata

Assignees

Type

No type

Projects

Status

Todo

Status

No status

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions