From 231df5299184be70608d5c451a4cea1bff6b5862 Mon Sep 17 00:00:00 2001 From: Brian Kurtz Date: Thu, 18 Mar 2021 21:33:11 +0000 Subject: [PATCH] remove .vscode directory --- .gitignore | 1 + .vscode/launch.json | 26 -------------------------- 2 files changed, 1 insertion(+), 26 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 3c3629e..76efb07 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ node_modules +.vscode diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 8577169..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - // 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": "launch", - "name": "Ava test", - "skipFiles": ["/**"], - "program": "${workspaceFolder}/node_modules/bin/ava", - "args": [ - "--no-timeouts", - "--colors", - "${file}", - "--require", - "ts-node/register" - ], - "console": "integratedTerminal", - "sourceMaps": true, - "internalConsoleOptions": "neverOpen", - "runtimeExecutable": "node" - } - ] -}