From 5b8d6dbe75222aeeee897a3129222818c010bdd8 Mon Sep 17 00:00:00 2001 From: JoeyHuang0235 <82131679+joeyhuang0235@users.noreply.github.com> Date: Sun, 25 Sep 2022 19:38:13 +0800 Subject: [PATCH] docs: use `type: node` in launch configuration to debug (#2081) --- docs/guide/debugging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/debugging.md b/docs/guide/debugging.md index f51257b8fb61..9fef01e8de30 100644 --- a/docs/guide/debugging.md +++ b/docs/guide/debugging.md @@ -14,7 +14,7 @@ To debug a test file in VSCode, create the following launch configuration. "version": "0.2.0", "configurations": [ { - "type": "pwa-node", + "type": "node", "request": "launch", "name": "Debug Current Test File", "autoAttachChildProcesses": true,