launch.json 450 B

123456789101112131415
  1. {
  2. // 使用 IntelliSense 以得知可用的屬性。
  3. // 暫留以檢視現有屬性的描述。
  4. // 如需詳細資訊,請瀏覽: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Python: 目前檔案",
  9. "type": "python",
  10. "request": "launch",
  11. "program": "${file}",
  12. "console": "integratedTerminal"
  13. }
  14. ]
  15. }