From 58c47f7d1d7c9f9e6fad8c18dc1a26bbcc90d27f Mon Sep 17 00:00:00 2001 From: bendera Date: Wed, 31 Dec 2025 15:59:04 +0100 Subject: [PATCH] Add new devcontainer config --- .devcontainer/devcontainer.json | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) 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" }