-
Notifications
You must be signed in to change notification settings - Fork 357
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
Breakpoints are not hit when debugging #1265
Comments
Thanks for the report. I'm unable to repo this in my testing. Can you please also let me know the following to help with the investigation:
Thanks. |
Workarounds I have tried without success:
I've also tried placing a |
Here's a few more things to help with the investigation: Go to For the VS crash, try looking in Thanks. |
Live Diagnostics output: |
Thanks. From these lines:
This looks like another manifestation of #823 where the program is being finalized too soon during debugging. It's not clear right now if Node 6.5 introduced this regression or what exactly is causing it. It also does not repo on my machine, so it seems non deterministic. I'll investigate. Longer term, we plan to move share more of our debugger components with VS code. This may help resolve some of the flakiness we've seen here. |
Moved to shared debugger for Node 8. |
Similar to an old issue (#112 and #268), but with the latest tools. Breakpoints are not hit, neither in .ts, nor in generated or manually written .js files.
Expected behavior
Debugger should stop at breakpoints.
Actual behavior
Debugger doesn't stop at breakpoints.
Steps to Reproduce
console.log()
row inapp.ts
Additional notes
debug;
line inapp.js
and runningnode debug app.js
also works as expected.The text was updated successfully, but these errors were encountered: