diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 038afa5a..e6f694a4 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,20 @@ { - "image": "mcr.microsoft.com/devcontainers/universal:5", + "name": "VSCode Elements Dev Container", + "image": "mcr.microsoft.com/devcontainers/base:ubuntu", "features": { - "ghcr.io/devcontainers/features/node:1": {} - } + "node": "24" + }, + "postCreateCommand": "npm ci", + "customizations": { + "vscode": { + "extensions": [ + "dbaeumer.vscode-eslint", + "editorconfig.editorconfig", + "esbenp.prettier-vscode", + "google.wireit", + "runem.lit-plugin" + ] + } + }, + "remoteUser": "vscode" }