From f09e3960c428ed27342216d6eccb48832af11286 Mon Sep 17 00:00:00 2001 From: vados-dev <192440777+vados-dev@users.noreply.github.com> Date: Sat, 16 May 2026 06:26:44 +0300 Subject: [PATCH] Add devcontainer configuration for Node.js environment --- .devcontainer/devcontainer.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..25b5b7c1 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,18 @@ +{ + "image": "mcr.microsoft.com/devcontainers/javascript-node:4-24-trixie", + "features": { + "ghcr.io/devcontainers/features/docker-in-docker:2": { + "moby": "false" + } + }, + "postCreateCommand": "npm install -g @devcontainers/cli", + "customizations": { + "vscode": { + "extensions": [ + "mads-hartmann.bash-ide-vscode", + "dbaeumer.vscode-eslint", + "editorconfig.editorconfig" + ] + } + } +}