PokéScript Language support for Visual Studio Code.

tasks.json 494B

1234567891011121314151617181920
  1. // See https://go.microsoft.com/fwlink/?LinkId=733558
  2. // for the documentation about the tasks.json format
  3. {
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "type": "npm",
  8. "script": "watch",
  9. "problemMatcher": "$tsc-watch",
  10. "isBackground": true,
  11. "presentation": {
  12. "reveal": "never"
  13. },
  14. "group": {
  15. "kind": "build",
  16. "isDefault": true
  17. }
  18. }
  19. ]
  20. }