From 51d1e23d8b8cea9399945e941badcf628705a768 Mon Sep 17 00:00:00 2001 From: Bryn Ward-Leikis Date: Thu, 7 Dec 2023 13:23:07 +1300 Subject: [PATCH] add dev container config (#68) --- .devcontainer/devcontainer.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..5d67b5fb --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,11 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/universal +{ + "name": "Default Linux Universal", + "image": "mcr.microsoft.com/devcontainers/universal:2-linux", + "customizations": { + "vscode": { + "extensions": ["esbenp.prettier-vscode"] + } + } +}