From 6b6b9af90d4932c75d793aae019abcc263c0ece2 Mon Sep 17 00:00:00 2001 From: Ben Welsh Date: Fri, 21 Apr 2023 22:34:19 +0000 Subject: [PATCH] Add .devcontainer configuration for GitHub Codespaces --- .devcontainer/devcontainer.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..95ca7cb6 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,5 @@ +{ + "name": "Node.js", + "image": "mcr.microsoft.com/devcontainers/javascript-node:0-16", + "postCreateCommand": "yarn install", +} \ No newline at end of file