From 805e1fbb35aafa9d9e7606302c57a2017403cd77 Mon Sep 17 00:00:00 2001 From: Shuhei Hayashibara Date: Tue, 25 Jul 2023 05:33:59 +0900 Subject: [PATCH] =?UTF-8?q?ci:=20=F0=9F=8E=A1=20add=20vscode=20tasks.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/tasks.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..ea31d600 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,31 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "npm", + "script": "watch", + "group": "build", + "label": "npm: watch", + "detail": "node esbuild.js", + "presentation": { + "panel": "dedicated", + "reveal": "never" + }, + "problemMatcher": [ + "$tsc-watch" + ] + }, + { + "type": "npm", + "script": "test", + "group": "test", + "problemMatcher": ["$tsc"], + "label": "npm: test", + "detail": "yarn run build && node --experimental-vm-modules node_modules/.bin/jest", + "presentation": { + "panel": "dedicated", + "reveal": "always" + } + } + ] +}