diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 2d7b3cdd017cd..5c768287f59af 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -9,10 +9,6 @@ // Use -bullseye variants on local arm64/Apple Silicon. "args": { "VARIANT": "16" } }, - // Set *default* container specific settings.json values on container create. - "settings": {}, - // Add the IDs of extensions you want installed when the container is created. - "extensions": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"], // Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. "remoteUser": "node", "features": { @@ -21,5 +17,10 @@ "containerEnv": { // Required Environment Variable to properly run Cypress "DISPLAY": "${localEnv:DISPLAY}" + }, + "customizations": { + "vscode": { + "extensions": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"] + } } }