Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

29 řádky
1023 B

  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": "0.1.0",
  11. // we want to run npm
  12. "command": "npm",
  13. // the command is a shell script
  14. "isShellCommand": true,
  15. // show the output window only if unrecognized errors occur.
  16. "showOutput": "silent",
  17. // we run the custom script "compile" as defined in package.json
  18. "args": ["run", "compile", "--loglevel", "silent"],
  19. // The tsc compiler is started in watching mode
  20. "isWatching": true,
  21. // use the standard tsc in watch mode problem matcher to find compile problems in the output.
  22. "problemMatcher": "$tsc-watch"
  23. }