| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- // 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",
- "runtimeExecutable": "npm",
- "runtimeArgs": [
- "run",
- "server:nolazy"
- ],
- "port": 9229,
- "restart": true,
- "console": "integratedTerminal",
- "internalConsoleOptions": "neverOpen"
- },
- {
- "type": "chrome",
- "request": "launch",
- "name": "Debug: Chrome",
- "sourceMaps": true,
- "sourceMapPathOverrides": {
- "webpack:///*": "${workspaceFolder}/*"
- },
- "webRoot": "${workspaceFolder}/public",
- "url": "http://localhost:3000"
- },
- {
- "type": "firefox",
- "request": "launch",
- "name": "Debug: Firefox",
- "reAttach": true,
- "url": "http://localhost:3000",
- "webRoot": "${workspaceFolder}/public",
- "pathMappings": [
- {
- "url": "webpack:///src",
- "path": "${workspaceFolder}/src"
- },
- {
- "url": "http://localhost:3000",
- "path": "${workspaceFolder}/public"
- }
- ]
- }
- ]
- }
|