From 8a4c2e1b172497519d6157a0f5e470daf618a2de Mon Sep 17 00:00:00 2001 From: Kunpeng Fan Date: Mon, 24 Apr 2023 12:07:07 +0800 Subject: [PATCH] support directly running from VS Code --- .vscode/launch.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..0324fb55a --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Python: Current File", + "type": "python", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal", + "cwd": "${fileDirname}" + } + ] +} \ No newline at end of file