From 80218cb5fbe8bdba7fb3e912ac4ca4cd72d5246d Mon Sep 17 00:00:00 2001 From: Qiaoqiao Zhang <55688292+qiaozha@users.noreply.github.com> Date: Wed, 2 Dec 2020 10:12:57 +0800 Subject: [PATCH] checkin-vscode-launch-json (#665) --- .gitignore | 1 - .vscode/launch.json | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 4bea74c68..6ff0a3dc9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ node_modules/ dist/ -.vscode/ .vs/ __pycache__/ src/test/scenarios/testserver/input/ diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..4a78d1aeb --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,17 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "node", + "request": "attach", + "name": "Attach", + "port": 9229, + "skipFiles": [ + "/**" + ] + } + ] +} \ No newline at end of file