launch.json 344 B

123456789101112131415
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Run current file",
  6. "type": "python",
  7. "request": "launch",
  8. "program": "${file}",
  9. "env": {
  10. "PYTHONPATH": "${workspaceRoot}"
  11. },
  12. "console": "integratedTerminal"
  13. }
  14. ]
  15. }