From 48c2ca9366a9d7567539d991a4fd9fd0af633671 Mon Sep 17 00:00:00 2001 From: Luke Oliff Date: Sat, 6 Apr 2024 09:59:30 +0000 Subject: [PATCH] chore: add dev container file [no ci] --- .devcontainer/devcontainer.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..2a812706 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,17 @@ +{ + "name": "Node.js & TypeScript", + "image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye", + "features": { + "ghcr.io/devcontainers-contrib/features/typescript:2": {} + }, + "customizations": { + "vscode": { + "extensions": [ + "blipn.terminal-icon", + "eamodio.gitlens", + "redhat.vscode-xml", + "redhat.vscode-yaml" + ] + } + } +} \ No newline at end of file