Why after update VSCode giving this error? Could not read source map for … (Node.js)

后端 未结 2 788
醉梦人生
醉梦人生 2021-02-19 08:36

My program was working before updating Visual Studio Code. After updating, Why am I get this error?

Could not read source map for file:///c:/Users/s.ayta         


        
2条回答
  •  梦如初夏
    2021-02-19 09:27

    Try to add this property to the .vscode\launch.json file:

    "resolveSourceMapLocations": [
        "${workspaceFolder}/**",
        "!**/node_modules/**"
    ]
    

    According to this issue, this should be configured as default in the next versions.

提交回复
热议问题