From 9b0f6cbdc68d1a69fb9887c10b6145f2847d353e Mon Sep 17 00:00:00 2001 From: CSK <73425927+cr2007@users.noreply.github.com> Date: Fri, 16 Feb 2024 10:47:30 +0000 Subject: [PATCH] Adds Dev Container configuration with VS Code extensions and port forwarding --- .devcontainer/devcontainer.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..0dd192e --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,27 @@ +{ + "name": "Mario Kart Dev Container", + "image": "mcr.microsoft.com/devcontainers/javascript-node", + "customizations": { + "vscode": { + "extensions": [ + "eamodio.gitlens", + "esbenp.prettier-vscode", + "VisualStudioExptTeam.vscodeintellicode", + "dbaeumer.vscode-eslint", + "dsznajder.es7-react-js-snippets", + "antfu.vite", + "meganrogge.template-string-converter", + "ambar.bundle-size", + "aaron-bond.better-comments" + ] + } + }, + "forwardPorts": [4000], + "portsAttributes": { + "4000": { + "label": "Application", + "onAutoForward": "notify" + } + }, + "postCreateCommand": "npm install" +}