launch.json 356 B

1234567891011121314
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. "version": "0.2.0",
  5. "configurations": [
  6. {
  7. "name": "Python: Current File",
  8. "type": "python",
  9. "request": "launch",
  10. "program": "${file}",
  11. "console": "internalConsole"
  12. }
  13. ]
  14. }