open:vscode-launch.json

VSCode launch.json

{
  // Use IntelliSense to learn about possible attributes.
  // Hover to view descriptions of existing attributes.
  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  "version": "0.2.0",
  "configurations": [
    {
      "name": "Launch via NPM",
      "request": "launch",
      "runtimeExecutable": "npm",
      "runtimeArgs": ["run", "dev"],
      "skipFiles": ["<node_internals>/**"],
      "type": "pwa-node",
      "console": "integratedTerminal",
      "autoAttachChildProcesses": true,
      "sourceMaps": true
    }
  ]
}

{
  "configurations": [
    {
      "name": "Python: Current File (Integrated Terminal)",
      "type": "python",
      "request": "launch",
      "program": "${file}",
      "cwd": "${workspaceRoot}",
      "env": { "PYTHONPATH": "${workspaceRoot}" },
      "console": "integratedTerminal"
    }
  ]
}


  • open/vscode-launch.json.txt
  • 마지막으로 수정됨: 2021/04/06 04:45
  • 저자 127.0.0.1