From d91da12e95f0778e47f2fc9c9b70791c54e1b995 Mon Sep 17 00:00:00 2001 From: Andre Wanlin Date: Wed, 21 May 2025 09:00:10 -0500 Subject: [PATCH] Debugging - Updated to add `experimentalNetworking` flag for VS Code Signed-off-by: Andre Wanlin --- docs/tooling/local-dev/debugging.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/tooling/local-dev/debugging.md b/docs/tooling/local-dev/debugging.md index 662f04151a..6e12bb9f5f 100644 --- a/docs/tooling/local-dev/debugging.md +++ b/docs/tooling/local-dev/debugging.md @@ -65,7 +65,8 @@ In your `.vscode/launch.json`, add a new entry with the following, "runtimeExecutable": "yarn", // Specifies the runtime to execute the application. In this case, it uses `yarn` to run the script. "args": ["start", "--inspect"], // Arguments passed to the `yarn` command. Here, it runs `yarn start` with the `--inspect` flag to enable debugging. "skipFiles": ["/**"], // Tells the debugger to skip stepping into Node.js internal files during debugging. - "console": "integratedTerminal" // Specifies that the debugger should use the integrated terminal for input/output. + "console": "integratedTerminal", // Specifies that the debugger should use the integrated terminal for input/output. + "experimentalNetworking": "off" // Since Node.js 22.15.0 an additional parameter --experimental-network-inspection is added but currently not supported by Yarn } ] }