tasks.json 377 B

123456789101112131415161718192021222324
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "command": "tsc",
  6. "args": [
  7. "-p",
  8. "."
  9. ],
  10. "problemMatcher": "$tsc",
  11. "tasks": [
  12. {
  13. "label": "tsc",
  14. "type": "shell",
  15. "command": "tsc",
  16. "args": [
  17. "-p",
  18. "."
  19. ],
  20. "problemMatcher": "$tsc",
  21. "group": "build"
  22. }
  23. ]
  24. }