{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "启动程序",
"program": "${workspaceFolder}\\bin\\www",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/babel-node",
"skipFiles": [
"${workspaceRoot}/node_modules/**/*.js",
"<node_internals>/**/*.js"
],
//解决报sourcemap的错
"resolveSourceMapLocations": ["${workspaceFolder}/", "!/node_modules/**"]
}
]
}
vscode调试node es6
最新推荐文章于 2024-08-13 16:49:07 发布
这是一个关于如何配置Visual Studio Code的launch.json文件来使用Babel运行Node.js应用程序的教程。通过设置`runtimeExecutable`为`babel-node`,可以避免源码映射错误,并通过`skipFiles`排除特定文件,确保顺利启动程序。
摘要由CSDN通过智能技术生成