tasks.json 296 B

12345678910111213
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "0.1.0",
  5. "command": "tsc",
  6. "isShellCommand": true,
  7. "args": [
  8. "-p",
  9. "."
  10. ],
  11. "showOutput": "silent",
  12. "problemMatcher": "$tsc"
  13. }