tasks.json 434 B

12345678910111213141516171819
  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. "tasks": [
  6. {
  7. "label": "love",
  8. "type": "shell",
  9. "command": "lovec",
  10. "args": [
  11. "."
  12. ],
  13. "group": {
  14. "kind": "build",
  15. "isDefault": true
  16. }
  17. }
  18. ]
  19. }