File tree Expand file tree Collapse file tree
extensions/debug-auto-launch/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -95,9 +95,11 @@ function readCurrentState(): State {
9595 case 'off' :
9696 return State . Off ;
9797 case 'on' :
98- const jsDebugConfig = vscode . workspace . getConfiguration ( JS_DEBUG_SETTINGS ) ;
99- const useV3 = nodeConfig . get ( NODE_DEBUG_USEV3 ) || jsDebugConfig . get ( JS_DEBUG_USEPREVIEW ) ;
100- return useV3 ? State . OnWithJsDebug : State . OnWithNodeDebug ;
98+ // todo: reenable after resolving https://github.com/microsoft/vscode/issues/102057
99+ // const jsDebugConfig = vscode.workspace.getConfiguration(JS_DEBUG_SETTINGS);
100+ // const useV3 = nodeConfig.get(NODE_DEBUG_USEV3) || jsDebugConfig.get(JS_DEBUG_USEPREVIEW);
101+ // return useV3 ? State.OnWithJsDebug : State.OnWithNodeDebug;
102+ return State . OnWithNodeDebug ;
101103 case 'disabled' :
102104 default :
103105 return State . Disabled ;
You can’t perform that action at this time.
0 commit comments