From 9d50e1392c06ef7ad5a2e71eb8b97fc2642c7937 Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Sat, 28 Jun 2025 18:45:53 +0200 Subject: [PATCH] devcontainer: init --- .devcontainer/devcontainer.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..0f1eb13 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,16 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node +{ + "name": "Node.js & TypeScript", + "image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm", + "customizations": { + "vscode": { + "extensions": [ + "GitHub.vscode-github-actions", + "esbenp.prettier-vscode", + "mads-hartmann.bash-ide-vscode", + "ms-azuretools.vscode-containers" + ] + } + } +}