From 74ac1cde2737b2f4140aef71f72d051b5c5a0bae Mon Sep 17 00:00:00 2001 From: David Date: Fri, 11 Dec 2020 16:08:49 +0000 Subject: [PATCH] Fix for VSCode 1.52 Breakpoints declaration has moved in the package.json. This fixes it. --- package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 7d622b6c..66f1136e 100644 --- a/package.json +++ b/package.json @@ -112,15 +112,15 @@ ] }, "contributes": { + "breakpoints" : [ + { + "language": "php" + } + ], "debuggers": [ { "type": "php", "label": "PHP", - "enableBreakpointsFor": { - "languageIds": [ - "php" - ] - }, "program": "./out/phpDebug.js", "runtime": "node", "configurationAttributes": {