launch.json 2.4 KB

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