Closed
Description
- VSCode Version: 1.28 (master)
- OS Version: Linux Ubuntu 18
Steps to Reproduce:
- create a symbolic link to a folder (
ln -s source target
) - open the folder (running out of master where our
realpath
logic is removed and you can open the link) - add a app.js node.js file with just one console.log statement
- add a breakpoint
- create a launch config:
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/app.js",
"runtimeArgs": [
"--preserve-symlinks"
]
}
- Debug
=> 🐛 breakpoint is not hit
Works fine when opening the folder with its real path.