From 3cb6ea739370ea1546ca47f3009356cbefde2a1c Mon Sep 17 00:00:00 2001 From: Prokube <68293280+prokube@users.noreply.github.com> Date: Sat, 10 Jul 2021 06:48:18 -0700 Subject: [PATCH] A --- .vscode/tasks.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..0930c09 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,21 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "lime", + "command": "test", + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "type": "lime", + "command": "build", + "group": { + "kind": "build", + "isDefault": true + } + } + ] +}