launch.json 987 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. // IntelliSense を使用して利用可能な属性を学べます。
  3. // 既存の属性の説明をホバーして表示します。
  4. // 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "type": "node",
  9. "request": "launch",
  10. "name": "Debug: Server",
  11. "runtimeExecutable": "npm",
  12. "runtimeArgs": [
  13. "run",
  14. "server:debug"
  15. ],
  16. "port": 9229,
  17. "restart": true,
  18. "console": "integratedTerminal",
  19. "internalConsoleOptions": "neverOpen"
  20. },
  21. {
  22. "type": "chrome",
  23. "request": "launch",
  24. "trace": true,
  25. "name": "Debug: Chrome",
  26. "sourceMaps": true,
  27. "sourceMapPathOverrides": {
  28. "webpack:///*": "${workspaceRoot}/*"
  29. },
  30. "url": "http://localhost:3000",
  31. "webRoot": "${workspaceRoot}/public"
  32. }
  33. ]
  34. }