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
Try installing an older version of VSCode, that solve this same issue here.
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.