-
Notifications
You must be signed in to change notification settings - Fork 83
Open
Labels
help wantedAccepting PRsAccepting PRs
Description
Describe the bug
When a manifest (oclif.manifest.json) file is present, breakpoints don't get tripped via VSCode's debugger.
To Reproduce
- Generate a manifest file with
oclif manifest - Set up a breakpoint somewhere in your source code
- Create a launch configuration for attaching
{
"type": "node",
"request": "launch",
"name": "Execute Command",
"skipFiles": ["<node_internals>/**"],
"runtimeExecutable": "node",
"runtimeArgs": ["--loader", "ts-node/esm", "--no-warnings=ExperimentalWarning"],
"program": "${workspaceFolder}/bin/dev.js",
"args": ["hello:world"]
}- Run your launch configuration in VSCode
Expected behavior
Breakpoints should trip, even when a manifest file is present.
Environment (please complete the following information):
- OS & version: Windows 10
- Shell/terminal & version: Windows Terminal w/ powershell
Metadata
Metadata
Assignees
Labels
help wantedAccepting PRsAccepting PRs