Skip to content

Commit ad40702

Browse files
committed
debug: bump js-debug and use its auto attach by default once more
1 parent c50b5ac commit ad40702

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

extensions/debug-auto-launch/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"debug.javascript.usePreviewAutoAttach": {
4040
"scope": "window",
4141
"type": "boolean",
42-
"default": false,
42+
"default": true,
4343
"description": "%debug.javascript.usePreviewAutoAttach%"
4444
}
4545
}

extensions/debug-auto-launch/src/extension.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function toggleAutoAttachSetting() {
9393

9494
function autoAttachWithJsDebug() {
9595
const jsDebugConfig = vscode.workspace.getConfiguration(JS_DEBUG_SETTINGS);
96-
return jsDebugConfig.get(JS_DEBUG_USEPREVIEWAA, false);
96+
return jsDebugConfig.get(JS_DEBUG_USEPREVIEWAA, true);
9797
}
9898

9999
function readCurrentState(): State {

product.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
},
7777
{
7878
"name": "ms-vscode.js-debug-companion",
79-
"version": "1.0.2",
79+
"version": "1.0.4",
8080
"repo": "https://github.com/microsoft/vscode-js-debug-companion",
8181
"metadata": {
8282
"id": "99cb0b7f-7354-4278-b8da-6cc79972169d",
@@ -91,7 +91,7 @@
9191
},
9292
{
9393
"name": "ms-vscode.js-debug",
94-
"version": "1.48.1",
94+
"version": "1.49.0",
9595
"repo": "https://github.com/Microsoft/vscode-js-debug",
9696
"metadata": {
9797
"id": "25629058-ddac-4e17-abba-74678e126c5d",

0 commit comments

Comments
 (0)