12345678910111213141516171819202122 |
- {
- "version": "0.2.0",
- "configurations": [
-
- {
- "name": "Python: Current File",
- "type": "python",
- "request": "launch",
- "program": "${file}",
- "console": "integratedTerminal"
- },
-
- {
- "name": "Python: Current File with args",
- "type": "python",
- "request": "launch",
- "program": "${file}",
- "console": "integratedTerminal",
- "args": ["-v", "run.mp4"]
- }
- ]
- }
|