mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-04-28 03:30:03 +02:00
33 lines
782 B
JSON
33 lines
782 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "foo",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "foo",
|
|
"justMyCode": true,
|
|
"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:3000",
|
|
"webRoot": "${workspaceFolder}/frontend"
|
|
}
|
|
]
|
|
}
|