newdwh2021/.vscode/launch.json
2023-04-17 16:09:10 +09:00

22 lines
744 B
JSON

{
// IntelliSense を使用して利用可能な属性を学べます。
// 既存の属性の説明をホバーして表示します。
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Batch Sample",
"type": "python",
"request": "launch",
"program": "entrypoint.py",
"console": "integratedTerminal",
"justMyCode": true,
"envFile": "${workspaceFolder}/.env"
},
{ "name": "Python: Current File",
"type": "python",
"request": "test",
"console": "integratedTerminal"
}
]
}