From 30fffeaf4ce93150bff175a666ffd4009e99680b Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Fri, 18 Nov 2022 16:35:35 +0000 Subject: [PATCH] Create `devcontainer.json` It contains the Dev Container configuration, as described here: https://code.visualstudio.com/docs/devcontainers/create-dev-container --- .devcontainer/devcontainer.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..fb0a3269 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,14 @@ +{ + "image": "mcr.microsoft.com/vscode/devcontainers/javascript-node:18", + "forwardPorts": [8080], + + "customizations": { + "vscode": { + "extensions": [ + "ms-vscode.vscode-typescript-next", + "dbaeumer.vscode-eslint", + "mutantdino.resourcemonitor" + ] + } + } +} \ No newline at end of file