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

后端 未结 2 789
醉梦人生
醉梦人生 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:02

    Try installing an older version of VSCode, that solve this same issue here.

    0 讨论(0)
  • 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.

    0 讨论(0)
提交回复
热议问题