選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

123456789101112131415161718192021222324252627282930
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Launch",
  6. "type": "node",
  7. "request": "launch",
  8. "program": "test.js",
  9. "stopOnEntry": false,
  10. "args": [],
  11. "cwd": ".",
  12. "runtimeExecutable": null,
  13. "runtimeArgs": [
  14. "--nolazy"
  15. ],
  16. "env": {
  17. "NODE_ENV": "development"
  18. },
  19. "externalConsole": false,
  20. "sourceMaps": false,
  21. "outDir": null
  22. },
  23. {
  24. "name": "Attach",
  25. "type": "node",
  26. "request": "attach",
  27. "port": 5858
  28. }
  29. ]
  30. }