{
"version": "0.2.0",
"configurations": [
{
"name": "current file",
"type": "node",
"request": "launch",
// Debug current file in VSCode
"program": "${file}",
/*
* Path to tsx binary
* Assuming locally installed
*/
"runtimeExecutable": "tsx",
"runtimeArgs": ["watch", "--inspect"],
/*
* Open terminal when debugging starts (Optional)
* Useful to see console.logs
*/
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
// Files to exclude from debugger (e.g. call stack)
"skipFiles": [
// Node.js internal core modules
"<node_internals>/**",
// Ignore all dependencies (optional)
"${workspaceFolder}/node_modules/**"
]
}
]
}
Steps to reproduce
Run the app via the vs code debugger, make changes, the changes reflect and the debugger restarts -> working as expected
Now run the build node esbuild.config.js. It produces dist/index.mjs. Now run the program via the debugger again, instead of watching main.ts, its logs say its watching dist/index.mjs, which it should not. Thus any change i make in main.ts is not causing the debugger to refresh
Bugs are expected to be fixed by those affected by it
[x] I'm interested in working on this issue
Compensating engineering work will speed up resolution and support the project
[ ] I'm willing to offer $10 for financial support
Acknowledgements
Minimal reproduction URL
https://stackblitz.com/edit/node-i1hqro
Problem & expected behavior (under 200 words)
Setup (same as attached stackblitz link)
main.ts
esbuild.config.mjs
launch.json
Steps to reproduce
Run the app via the vs code debugger, make changes, the changes reflect and the debugger restarts -> working as expected
Now run the build
node esbuild.config.js
. It produces dist/index.mjs. Now run the program via the debugger again, instead of watching main.ts, its logs say its watching dist/index.mjs, which it should not. Thus any change i make in main.ts is not causing the debugger to refreshBugs are expected to be fixed by those affected by it
Compensating engineering work will speed up resolution and support the project