Skip to content

Instantly share code, notes, and snippets.

@nbouliol
Created March 29, 2019 09:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nbouliol/05ebdf83ef5b4d076f56cb50013136ef to your computer and use it in GitHub Desktop.
Save nbouliol/05ebdf83ef5b4d076f56cb50013136ef to your computer and use it in GitHub Desktop.
vscode task to check ts
{
"version": "2.0.0",
"tasks": [
{
"label": "TSCompileAll",
"type": "shell",
"command": "./node_modules/.bin/tsc --watch --noEmit --project .",
"problemMatcher": ["$tsc-watch"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment