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
skipFiles
Cannot find module './swc.darwin-universal.node' when debugging with skipFiles option in the launch.json file.
launch.json
Here is my launch.json:
{ "version": "0.2.0", "configurations": [ { "type": "node", "name": "swc-node Debugger", "request": "launch", "cwd": "${workspaceFolder}", "runtimeExecutable": "node", "args": [ "-r", "@swc-node/register", "index.ts" ], "skipFiles": [ "<node_internals>/**/*.js", "${workspaceFolder}/node_modules/**/*.js", ], "console": "integratedTerminal", "internalConsoleOptions": "neverOpen", }, ] }
The text was updated successfully, but these errors were encountered:
I have already tried reinstalling @swc-node/register, deleting entire node_modules folder and reinstalling modules with pnpm, but neither works.
@swc-node/register
Sorry, something went wrong.
No branches or pull requests
Cannot find module './swc.darwin-universal.node' when debugging with
skipFiles
option in thelaunch.json
file.Here is my launch.json:
The text was updated successfully, but these errors were encountered: