Open andrecasal opened 2 months ago
In my setup with remote debugging inside docker skipFiles did not work either when i used
"skipFiles": [
"${workspaceFolder}/node_modules/**"
],
It worked after changing it to
"skipFiles": [
"**/${workspaceFolder}/node_modules/**"
],
The behavior is the same when using the actual path for the workspace folder instad of ${workspaceFolder}
Does this issue occur when all extensions are disabled?: Yes/No
Steps to Reproduce:
git clone https://github.com/epicweb-dev/epic-stack
npm i
/app/root.tsx
's loaderdebug
session and step over to the end of the loader.You'll notice that
server-build
loads, even though the debug config asks to skip files insidenode_modules
,build
, andserver-build
.https://github.com/user-attachments/assets/ee11793e-3686-4da5-b935-ced19ce98b60