mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-04-19 16:10:01 +02:00
33 lines
783 B
JSON
33 lines
783 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "foo",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "foo",
|
|
"justMyCode": false,
|
|
"env": {
|
|
"ENVIRONMENT": "development"
|
|
}
|
|
},
|
|
{
|
|
"name": "bar",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "bar",
|
|
"justMyCode": false,
|
|
"env": {
|
|
"ENVIRONMENT": "development"
|
|
}
|
|
},
|
|
{
|
|
"type": "firefox",
|
|
"request": "launch",
|
|
"name": "react: firefox",
|
|
"url": "http://localhost:5173",
|
|
"webRoot": "${workspaceFolder}/frontend"
|
|
}
|
|
]
|
|
}
|