devcontainer.json (483B)
1 { 2 "name": "Node.js & TypeScript", 3 "image": "mcr.microsoft.com/devcontainers/typescript-node:20-bullseye", 4 5 // Use 'forwardPorts' to make a list of ports inside the container available locally. 6 // "forwardPorts": [], 7 8 // Use 'postCreateCommand' to run commands after the container is created. 9 // "postCreateCommand": "yarn install", 10 11 // Set `remoteUser` to `root` to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. 12 "remoteUser": "node" 13 }