tasks.json 338 B

1234567891011121314
  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": "start .debug.script.mjs",
  8. "type": "shell",
  9. "command": "node .vscode/.debug.script.mjs",
  10. "isBackground": true,
  11. "problemMatcher": []
  12. }
  13. ]
  14. }