VS Code Can't Set Breakpoints Properly

大憨熊 提交于 2019-12-05 08:57:14

Thanks to this post I was able to resolve my issue.

I created a .babelrc file with these lines:

{
    "presets": ["env"],
    "sourceMaps": "inline",
    "retainLines": true
}

Now breakpoints hit as expected. Yay!

However, I believe I have a separate issue: I don't get any intellisense while debugging. I can view the value of a variable but I don't see text on anything else (functions, keywords, etc).

Hope this helps someone :)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!