27 lines
557 B
JSON
27 lines
557 B
JSON
{
|
|
"name": "ESP-IDF Dev Environment",
|
|
"build": {
|
|
"dockerfile": "DockerFile"
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {
|
|
"terminal.integrated.defaultProfile.linux": "bash",
|
|
"idf.espIdfPath": "/opt/esp/idf",
|
|
"idf.toolsPath": "/opt/esp",
|
|
"idf.gitPath": "/usr/bin/git",
|
|
"idf.pythonBinPath": "/usr/bin/python3"
|
|
},
|
|
"extensions": [
|
|
"ms-vscode.cpptools",
|
|
"espressif.esp-idf-extension"
|
|
]
|
|
}
|
|
},
|
|
"runArgs": [
|
|
"--privileged",
|
|
"-v",
|
|
"/dev:/dev"
|
|
]
|
|
}
|