feat(pack): make dap work in typescript using vscode-js-debug #163
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi!
I recently moved from my nvim setup to AstroNvim and really appreciate the work! Awesome suite! I installed the typescript pack and couldn't bring DAP to work properly, basically facing the same issues as in #148.
This PR replicates my working DAP setup with vscode-js-debug in the new lazy format. I hope everything is fine, I only had an issue with the
config
field for vscode-js-debug: I usedconfig = true
but got an error like:Didn't really know what to do with that, so I did what the msg told me to do ;)
I added an
attach to port
config which I usually use while debugging a bunch of docker containers, which expose the inspector thing on different ports. I have not tested the other configs.Resolves: #148