launch.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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": "attach",
  10. "name": "Debug: Attach Debugger to Server",
  11. "port": 9229
  12. },
  13. {
  14. "type": "node",
  15. "request": "launch",
  16. "name": "Debug: Server",
  17. "cwd": "${workspaceFolder}/packages/app",
  18. "runtimeExecutable": "npm",
  19. "runtimeArgs": [
  20. "run",
  21. "dev:server"
  22. ],
  23. "port": 9229,
  24. "restart": true,
  25. "console": "integratedTerminal",
  26. "internalConsoleOptions": "neverOpen"
  27. },
  28. {
  29. "type": "chrome",
  30. "request": "launch",
  31. "name": "Debug: Chrome",
  32. "sourceMaps": true,
  33. "sourceMapPathOverrides": {
  34. "webpack:///*": "${workspaceFolder}/packages/app/*"
  35. },
  36. "webRoot": "${workspaceFolder}/packages/app/public",
  37. "url": "http://localhost:3000"
  38. },
  39. {
  40. "type": "firefox",
  41. "request": "launch",
  42. "name": "Debug: Firefox",
  43. "reAttach": true,
  44. "url": "http://localhost:3000",
  45. "webRoot": "${workspaceFolder}/packages/app/public",
  46. "pathMappings": [
  47. {
  48. "url": "webpack:///core",
  49. "path": "${workspaceFolder}/packages/core"
  50. },
  51. {
  52. "url": "webpack:///plugin-attachment-refs",
  53. "path": "${workspaceFolder}/packages/plugin-attachment-refs"
  54. },
  55. {
  56. "url": "webpack:///plugin-pukiwiki-like-linker",
  57. "path": "${workspaceFolder}/packages/plugin-pukiwiki-like-linker"
  58. },
  59. {
  60. "url": "webpack:///plugin-lsx",
  61. "path": "${workspaceFolder}/packages/plugin-lsx"
  62. },
  63. {
  64. "url": "webpack:///ui",
  65. "path": "${workspaceFolder}/packages/ui"
  66. },
  67. {
  68. "url": "webpack:///src",
  69. "path": "${workspaceFolder}/packages/app/src"
  70. },
  71. {
  72. "url": "http://localhost:3000",
  73. "path": "${workspaceFolder}/packages/app/public"
  74. }
  75. ]
  76. }
  77. ]
  78. }