pybeamshow/.vscode/launch.json

17 lines
523 B
JSON
Raw Normal View History

2023-02-15 21:08:47 +01:00
{
// 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": "Python: beamshow",
"type": "python",
"request": "launch",
"program": "beamshow.py",
"console": "integratedTerminal",
2023-02-17 02:05:23 +01:00
"justMyCode": true,
"args": ["-w"]
2023-02-15 21:08:47 +01:00
}
]
}