We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can you provide a vscode debugger example?
package.json
"scripts": { "build": "tsx build/index.ts", }
.vscode/launch.json
{ "version": "0.2.0", "configurations": [ { "name": "Launch via NPM", "request": "launch", "runtimeArgs": ["run-script", "build"], "runtimeExecutable": "npm", "skipFiles": ["<node_internals>/**"], "type": "node" } ] }
I configured it as above, the breakpoints are not using the source map, the debugger is displayed in index.js
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature request
Can you provide a vscode debugger example?
Why?
package.json
.vscode/launch.json
I configured it as above, the breakpoints are not using the source map, the debugger is displayed in index.js
Alternatives
Additional context
No response
The text was updated successfully, but these errors were encountered: