我在线阅读了许多文章,为此我尝试了各种在线方式,但是到目前为止,对我来说都没有任何效果。
我已经重新安装了node,vs代码,再次重新安装了npm,但是什么也没用。
我正在使用->
VSCode版本:1.27.2
操作系统版本:Windows 10 Pro 64位操作系统,基于x64的处理器
节点版本:v8.11.3
我的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": [
{
"name": "Launch",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/dist/LeonardoGrader.js",
"stopOnEntry": false,
"args": [],
"cwd": "${workspaceRoot}",
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/dist/**/*.js"]
}
]
}
任何帮助将不胜感激。谢谢。