From d5ed797043dfe7a5804b9cb7d30bb22fcda7f4af Mon Sep 17 00:00:00 2001 From: nsbradford Date: Tue, 31 Oct 2023 01:43:10 +0000 Subject: [PATCH] add default extensions --- .devcontainer/devcontainer.json | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 168ee86..cd655ba 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -41,22 +41,23 @@ }, // TODO can't get the yarn install within Dockerfile to show up in dev container - "postCreateCommand": "yarn install --frozen-lockfile" + "postCreateCommand": "yarn install --frozen-lockfile", // Configure tool-specific properties. - // "customizations": { - // "vscode": { - // "settings": {}, - // "extensions": [ - // "dbaeumer.vscode-eslint", - // "eamodio.gitlens", - // "esbenp.prettier-vscode", - // "GitHub.copilot", - // "k--kato.intellij-idea-keybindings", - // "Orta.vscode-jest" - // ] - // } - // } + "customizations": { + "vscode": { + "settings": {}, + "extensions": [ + "dbaeumer.vscode-eslint", + "eamodio.gitlens", + "esbenp.prettier-vscode", + "GitHub.copilot", + "k--kato.intellij-idea-keybindings", + "Orta.vscode-jest", + "ms-azuretools.vscode-docker" + ] + } + } // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. // "remoteUser": "root"