-
Notifications
You must be signed in to change notification settings - Fork 38.8k
Description
Does this issue occur when all extensions are disabled?: Yes
I am building an Electron app, and the latest version of VScode stops binding breakpoints in TypeScript files. It is reproducible by switching between versions of VScode.
I also checked the latest Insider Build, with no success. Once I switch back to v1.66.2 it works.
Broken Version
Version: 1.67.0 (user setup)
Commit: 57fd6d0
Date: 2022-05-04T12:06:02.889Z
Electron: 17.4.1
Chromium: 98.0.4758.141
Node.js: 16.13.0
V8: 9.8.177.13-electron.0
OS: Windows_NT x64 10.0.22610
Last Working Version
Version: 1.66.2 (user setup)
Commit: dfd34e8
Date: 2022-04-11T07:46:01.075Z
Electron: 17.2.0
Chromium: 98.0.4758.109
Node.js: 16.13.0
V8: 9.8.177.11-electron.0
OS: Windows_NT x64 10.0.22610
The content of the launch.json is as follows:
{
"name": "Electron: Renderer",
"type": "chrome",
"request": "attach",
"port": 9223,
"sourceMaps": true,
"webRoot": "${workspaceRoot}",
"sourceMapPathOverrides": {
"webpack:///./~/*": "${workspaceFolder}/node_modules/*",
"webpack://?:*/*": "${workspaceFolder}/*"
},
"timeout": 300000
},

