VSCode Insiders breaks into Chrome developer tools with "TypeError: Cannot read property 'layout' of undefined". Fixes #81063

This commit is contained in:
Martin Aeschlimann 2019-09-18 23:03:05 +02:00
parent 003a1acd23
commit b10bf696e4

View file

@ -601,7 +601,7 @@ export class RawDebugSession implements IDisposable {
} else {
args[key] = [value];
}
} else if (key === 'extensionDevelopmentPath') {
} else if (key === 'extensionDevelopmentPath' || key === 'enable-proposed-api') {
const v = args[key];
if (v) {
v.push(value);