我在VSCode中使用Windows 10 WSL。
我有扩展远程开发,WSL,我有节点安装,以及nvm。
当在远程WSL中工作并尝试调试时,我根本没有Node选项。
当我运行这个文件时,我得到:No debugger available, can not send 'variables'
我的launch.json如下:
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${file}"
}
]
}```
Can someone please help me fix it by adding Node.js option so I can properly debug?
Thanks a lot in advance!
2条答案
按热度按时间mgdq6dx11#
你最终找到解决方案了吗?
我添加了类似的问题,我只能通过显式指定节点二进制路径来使事情正常工作。
1.通过发出以下命令获取节点二进制路径:
which node
1.然后将其添加到
launch.json
配置中:仍然有一些是错误的,即使我只是安装教程:
https://learn.microsoft.com/en-us/windows/dev-environment/javascript/nodejs-on-wsl
qjp7pelc2#
经过许多许多小时的斗争,我终于得到了我的工作。这是笨重和笨拙的,但它至少工作,并使我能够调试。
在
tsconfig.json
中设置"sourceMap": true
使用此启动配置
在
package.json
中添加此脚本(用您的文件名替换文件名)完成所有设置后,要调试应用程序,请在终端窗口中执行以下命令
然后按F5附加到进程。
请注意,您需要在
tsconfig.json
和启动配置中启用源Map。