Skip to content

Commit

Permalink
ci: 🎡 add vscode tasks.json
Browse files Browse the repository at this point in the history
  • Loading branch information
shufo committed Jul 24, 2023
1 parent 46374e4 commit 805e1fb
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
]
}

0 comments on commit 805e1fb

Please sign in to comment.