fcrozatier
fcrozatier
DDeno
Created by fcrozatier on 5/9/2025 in #help
error: unexpected argument --experimental-network-inspection when trying to debug
SOLUTION: To remove the flag add "experimentalNetworking": "off" in your launch config https://github.com/microsoft/vscode-js-debug/issues/2220
11 replies
DDeno
Created by fcrozatier on 5/9/2025 in #help
error: unexpected argument --experimental-network-inspection when trying to debug
11 replies
DDeno
Created by fcrozatier on 5/9/2025 in #help
error: unexpected argument --experimental-network-inspection when trying to debug
{
"type": "node",
"request": "attach",
"name": "Attach to Deno",
"port": 9229,
"restart": false,
"timeout": 10000,
"localRoot": "${workspaceFolder}",
"remoteRoot": null
}
{
"type": "node",
"request": "attach",
"name": "Attach to Deno",
"port": 9229,
"restart": false,
"timeout": 10000,
"localRoot": "${workspaceFolder}",
"remoteRoot": null
}
11 replies
DDeno
Created by fcrozatier on 5/9/2025 in #help
error: unexpected argument --experimental-network-inspection when trying to debug
The dx was a bit better with the launch request as I could do everything from the editor, now I must connect the debugger via the command line
11 replies
DDeno
Created by fcrozatier on 5/9/2025 in #help
error: unexpected argument --experimental-network-inspection when trying to debug
If I use an attach request instead of a launch request I can debug both inside scripts and tests.
11 replies
DDeno
Created by fcrozatier on 5/9/2025 in #help
error: unexpected argument --experimental-network-inspection when trying to debug
So I have found a workaround
11 replies
DDeno
Created by fcrozatier on 5/9/2025 in #help
error: unexpected argument --experimental-network-inspection when trying to debug
I've reinstalled Deno and the extension and still have the problem. I think this could have to do with vscode, I remember seeing the update screen earlier today before I had the problem for the first time 😬
11 replies
DDeno
Created by fcrozatier on 1/3/2025 in #help
Installing packages locally with Deno
Figured it out. To enable local installs you need to set the nodeModulesDir: "auto" in your config https://docs.deno.com/runtime/fundamentals/node/#node_modules
2 replies