From c35881e3b4f682e4bd67e87ead690858c011c1ac Mon Sep 17 00:00:00 2001 From: Danae Millan <41606954+a-danae@users.noreply.github.com> Date: Mon, 10 Jul 2023 15:37:10 -0300 Subject: [PATCH] Add the tasks.json file back for xdebug in vscode (#2650) --- .vscode/tasks.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000000..e438ebc306 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,17 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "type": "shell", + "command": "npm run xdebug:start", + "label": "enable:xdebug" + }, + { + "type": "shell", + "command": "npm run xdebug:stop", + "label": "disable:xdebug" + } + ] +} \ No newline at end of file