From 0f11ff6d29fd8bcc69e191f1ac346921e6b61dc6 Mon Sep 17 00:00:00 2001 From: zhl Date: Wed, 9 Dec 2020 15:25:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0vscode=E7=9A=84debug=E9=85=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/launch.json | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 96a262c..ba17817 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -20,15 +20,18 @@ { "address": "192.168.100.24", - "localRoot": "${workspaceFolder}", + "localRoot": "${workspaceFolder}/src", "name": "192.168.100.24", "port": 9229, - "remoteRoot": "Absolute path to the remote directory containing the program", + "remoteRoot": "/root/apps/card_svr/src", "request": "attach", "skipFiles": [ - "/**" + "/**", + "node_modules/**" ], - "type": "pwa-node" + "type": "node", + "trace": true + } ] } \ No newline at end of file