From ebafe98ca16257f33922cef2d0bc4fe2afadc82a Mon Sep 17 00:00:00 2001 From: ChanTsune <41658782+ChanTsune@users.noreply.github.com> Date: Sun, 21 Jun 2026 10:24:57 +0900 Subject: [PATCH] Add devcontainer configuration --- .devcontainer/devcontainer.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..ba13b706 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,23 @@ +{ + "name": "release-with-commit", + "image": "mcr.microsoft.com/devcontainers/base:1-bookworm", + "features": { + "ghcr.io/devcontainers/features/node:1": { + "version": "24" + }, + "ghcr.io/devcontainers/features/github-cli:1": {} + }, + "postCreateCommand": "npm ci", + "customizations": { + "vscode": { + "extensions": [ + "dbaeumer.vscode-eslint", + "esbenp.prettier-vscode", + "github.vscode-github-actions", + "GitHub.vscode-pull-request-github", + "ms-vscode.vscode-typescript-next" + ] + } + }, + "remoteUser": "vscode" +}