tasks.json 240 B

12345678910111213
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build",
  6. "command": "npm",
  7. "args": ["run", "build"],
  8. "presentation": {
  9. "close": true
  10. }
  11. }
  12. ]
  13. }