We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
debug.javascript.usePreview
1 parent 68982b5 commit df07719Copy full SHA for df07719
src/omnisharp/utils.ts
@@ -202,6 +202,13 @@ function hasBlazorWebAssemblyDebugPrerequisites() {
202
return false;
203
}
204
205
+ const debugJavaScriptConfigSection = vscode.workspace.getConfiguration('debug.javascript');
206
+ const usePreviewValue = debugJavaScriptConfigSection.get('usePreview');
207
+ if (usePreviewValue) {
208
+ // If usePreview is truthy it takes priority over the useV3 variants.
209
+ return true;
210
+ }
211
+
212
const debugNodeConfigSection = vscode.workspace.getConfiguration('debug.node');
213
const useV3NodeValue = debugNodeConfigSection.get('useV3');
214
if (!useV3NodeValue) {
0 commit comments