diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 1d29fa0f70..c11dbf5693 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,15 +1,21 @@ { "name": "CMake Tools", "dockerFile": "Dockerfile", - "runArgs": [ + "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ], - "settings": { - "terminal.integrated.shell.linux": "/bin/bash" - }, - "extensions": [true][ - "ms-vscode.cpptools" - ] -} + "customizations": { + // Configure properties specific to VS Code. + "vscode": { + // Set *default* container specific settings.json values on container create. + "settings": { + "terminal.integrated.shell.linux": "/bin/bash" + }, + "extensions": [ + "ms-vscode.cpptools" + ] + } + } +} \ No newline at end of file