From a56c424787af02e5121ac847fcb3da12efe76ff1 Mon Sep 17 00:00:00 2001 From: Sourabh Desai <sourabhdesai@gmail.com> Date: Sat, 17 Jun 2023 14:49:59 -0700 Subject: [PATCH] Create devcontainer.json I've been using Github codespaces for development (bc I have a very old macbook air). Figured it may be nice to include a config for it in the repo so that forkers can easily spin up a dev environment that closely matches that of the code maintainers. --- .devcontainer/devcontainer.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..c0a2b1fc2 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,8 @@ +{ + "image": "mcr.microsoft.com/devcontainers/universal:2", + "features": { + "ghcr.io/devcontainers/features/node:1": {}, + "ghcr.io/devcontainers-contrib/features/turborepo-npm:1": {}, + "ghcr.io/devcontainers-contrib/features/typescript:2": {} + } +} -- GitLab