tasks.json.old 760 B

12345678910111213141516171819202122232425
  1. // See https://go.microsoft.com/fwlink/?LinkId=733558
  2. // for the documentation about the tasks.json format
  3. // A task runner that calls a custom npm script that compiles the extension.
  4. {
  5. "version": "0.1.0",
  6. // we want to run npm
  7. "command": "npm",
  8. // the command is a shell script
  9. "isShellCommand": true,
  10. // show the output window only if unrecognized errors occur.
  11. "showOutput": "silent",
  12. // we run the custom script "compile" as defined in package.json
  13. "args": ["run", "compile", "--loglevel", "silent"],
  14. // The tsc compiler is started in watching mode
  15. "isBackground": true,
  16. // use the standard tsc in watch mode problem matcher to find compile problems in the output.
  17. "problemMatcher": "$tsc-watch"
  18. }