// For format details, see https://aka.ms/devcontainer.json. { "image": "mcr.microsoft.com/vscode/devcontainers/typescript-node:dev-16", // Sets the run context to one level up instead of the .devcontainer folder. "context": "..", "remoteEnv": { "NODE_ENV": "${containerEnv:NODE_ENV}development" }, "forwardPorts": [ 3000 ], "portsAttributes": {"3000": {"label": "Vite devServer port"}}, // Comment to connect as a root user. See https://aka.ms/vscode-remote/containers/non-root. "containerUser": "node", // Configure tool-specific properties. "customizations": { // Configure properties specific to VS Code. "vscode": { // Add the IDs of extensions you want installed when the container is created. "extensions": [ "golang.Go", "esbenp.prettier-vscode", "dbaeumer.vscode-eslint", "astro-build.astro-vscode" ] } } }