Skip to content

Instantly share code, notes, and snippets.

@MikeyBurkman
Last active February 6, 2022 19:30
Show Gist options
  • Save MikeyBurkman/34ce6894af24cf026df87c6b7ff1297b to your computer and use it in GitHub Desktop.
Save MikeyBurkman/34ce6894af24cf026df87c6b7ff1297b to your computer and use it in GitHub Desktop.
VS Code Typescript Build Task
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "tsc-watch",
"group": "build",
"command": "./node_modules/.bin/tsc",
"type": "shell",
"args": ["--watch", "--project", "."],
"presentation": {
"echo": true,
"reveal": "never",
"focus": false,
"panel": "shared"
},
"isBackground": true,
"problemMatcher": "$tsc-watch"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment