launch.json 994 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. "timeout": 30000,
  18. "restart": true,
  19. "console": "integratedTerminal",
  20. "internalConsoleOptions": "neverOpen"
  21. },
  22. {
  23. "type": "chrome",
  24. "request": "launch",
  25. "name": "Debug: Chrome",
  26. "sourceMaps": true,
  27. "webRoot": "${workspaceFolder}/public",
  28. "sourceMapPathOverrides": {
  29. "webpack:///*": "${workspaceFolder}/*"
  30. },
  31. "url": "http://localhost:3000"
  32. }
  33. ]
  34. }