From 376fd7cfc397e760307388384ade417f61da0670 Mon Sep 17 00:00:00 2001 From: Eliise Date: Wed, 27 May 2020 21:51:06 +0100 Subject: [PATCH] Add debug config (#342) --- .vscode/launch.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..a129c7913 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,20 @@ +{ + // 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": [ + { + "name": "Launch", + "type": "go", + "request": "launch", + "mode": "auto", + "program": "${fileDirname}", + "env": { + "TF_ACC": "1" + }, + "args": [], + "buildFlags": "-v -tags=all" + } + ] +} \ No newline at end of file