Why after update VSCode giving this error? Could not read source map for ... (Node.js)
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.