-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: reenable vscode debug stepping (#1560)
* fix: correct program and cwd props in launch.json for VSCode debugging * fix: set tsconfig srcRoot so debug stepping works. The files are moved as part of `npm run build` so the sources in the .js.maps needs to be set accordingly, which is what the sourceRoot property does here. * docs: update readme to match new launch.json * fix: add payloadFile arg to json to match readme launch.json * fix: match readme to actual launch.json again --------- Co-authored-by: Stan Stanislaus <[email protected]>
- Loading branch information
1 parent
5d3b186
commit aa1b2d8
Showing
3 changed files
with
23 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,8 @@ | |
"src/", | ||
"test/", | ||
"testconsole/" | ||
] | ||
], | ||
"sourceRoot": "../" | ||
}, | ||
"exclude": [ | ||
"node_modules" | ||
|