Skip to content

Instantly share code, notes, and snippets.

@a1300
Created September 20, 2019 17:51
Show Gist options
  • Save a1300/920d31ffccba2d8f1bbae1e27ff3625c to your computer and use it in GitHub Desktop.
Save a1300/920d31ffccba2d8f1bbae1e27ff3625c to your computer and use it in GitHub Desktop.
Run TypeScript compiler on `ctrl + shift + b`
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "./node_modules/.bin/tsc",
"type": "shell",
"args": [
"--build",
"tsconfig.json",
"--force"
],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": "$tsc-watch",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment