Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

43 строки
1.2 KiB

7 лет назад
7 лет назад
7 лет назад
7 лет назад
8 лет назад
  1. // Available variables which can be used inside of strings.
  2. // ${workspaceRoot}: the root folder of the team
  3. // ${file}: the current opened file
  4. // ${fileBasename}: the current opened file's basename
  5. // ${fileDirname}: the current opened file's dirname
  6. // ${fileExtname}: the current opened file's extension
  7. // ${cwd}: the current working directory of the spawned process
  8. // A task runner that calls a custom npm script that compiles the extension.
  9. {
  10. "version": "2.0.0",
  11. "presentation": {
  12. "echo": true,
  13. "reveal": "always",
  14. "focus": false,
  15. "panel": "shared"
  16. },
  17. "tasks": [
  18. {
  19. "label": "compile",
  20. "type": "npm",
  21. "script": "compile",
  22. "group": "build",
  23. "problemMatcher": [
  24. "$tsc",
  25. "$tslint5"
  26. ]
  27. },
  28. {
  29. "label": "lint",
  30. "type": "npm",
  31. "script": "lint",
  32. "problemMatcher": [
  33. "$tslint5"
  34. ]
  35. },
  36. {
  37. "type": "npm",
  38. "script": "watch",
  39. "isBackground": true,
  40. "problemMatcher": "$tsc-watch"
  41. }
  42. ]
  43. }