{ // IntelliSense を使用して利用可能な属性を学べます。 // 既存の属性の説明をホバーして表示します。 // 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "node", "request": "attach", "name": "Debug: Attach Debugger to Server", "port": 9229 }, { "type": "node", "request": "launch", "name": "Debug: Server", "cwd": "${workspaceFolder}/packages/app", "runtimeExecutable": "npm", "runtimeArgs": [ "run", "dev:server" ], "port": 9229, "restart": true, "console": "integratedTerminal", "internalConsoleOptions": "neverOpen" }, { "type": "chrome", "request": "launch", "name": "Debug: Chrome", "sourceMaps": true, "sourceMapPathOverrides": { "webpack:///*": "${workspaceFolder}/packages/app/*" }, "webRoot": "${workspaceFolder}/packages/app/public", "url": "http://localhost:3000" }, { "type": "firefox", "request": "launch", "name": "Debug: Firefox", "reAttach": true, "url": "http://localhost:3000", "webRoot": "${workspaceFolder}/packages/app/public", "pathMappings": [ { "url": "webpack:///core", "path": "${workspaceFolder}/packages/core" }, { "url": "webpack:///plugin-attachment-refs", "path": "${workspaceFolder}/packages/plugin-attachment-refs" }, { "url": "webpack:///plugin-pukiwiki-like-linker", "path": "${workspaceFolder}/packages/plugin-pukiwiki-like-linker" }, { "url": "webpack:///plugin-lsx", "path": "${workspaceFolder}/packages/plugin-lsx" }, { "url": "webpack:///ui", "path": "${workspaceFolder}/packages/ui" }, { "url": "webpack:///src", "path": "${workspaceFolder}/packages/app/src" }, { "url": "http://localhost:3000", "path": "${workspaceFolder}/packages/app/public" } ] } ] }