forked from pyomeca/python_project_template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlaunch.json
More file actions
18 lines (18 loc) · 663 Bytes
/
launch.json
File metadata and controls
18 lines (18 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
// Utilisez IntelliSense pour en savoir plus sur les attributs possibles.
// Pointez pour afficher la description des attributs existants.
// Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Use adder",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/examples/use_adder.py",
"console": "integratedTerminal",
"justMyCode": true,
"env": {"PYTHONPATH": "${workspaceFolder}"},
"cwd": "${workspaceFolder}/examples/"
},
]
}