From c7789f1ce63fca41f517e8d10860849b2b30883f Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Wed, 13 Feb 2019 14:14:23 +0100 Subject: [PATCH] fix: debugging with all ports --- .vscode/launch.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index e8d07e068..90d61a19a 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,6 +10,7 @@ "name": "CLI Babel Registry", "stopOnEntry": false, "program": "${workspaceFolder}/debug/bootstrap.js", + "args": ["-l", "0.0.0.0:4873"], "env": { "BABEL_ENV": "registry" }, @@ -71,7 +72,8 @@ "name": "Verdaccio Compiled", "preLaunchTask": "npm: code:build", "program": "${workspaceRoot}/bin/verdaccio", + "args": ["-l", "0.0.0.0:4873"], "console": "integratedTerminal" } ] -} \ No newline at end of file +}