From 98882b643b316119724c2ef628a6203d7d7e24f1 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 15 Mar 2023 11:13:01 +0000 Subject: [PATCH] Add `devcontainer.json` --- .devcontainer/devcontainer.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..2fb1ca5 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,15 @@ +{ + "image": "mcr.microsoft.com/vscode/devcontainers/javascript-node:18", + "forwardPorts": [3000], + + "customizations": { + "vscode": { + "extensions": [ + "ms-vscode.vscode-typescript-next", + "dbaeumer.vscode-eslint", + "mutantdino.resourcemonitor" + ] + } + } +} +