// For format details, see https://aka.ms/devcontainer.json. For config options, see the // README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node { "name": "FakerJs", "image": "mcr.microsoft.com/devcontainers/typescript-node:22@sha256:bac061bcdaed47c16949eaf1b1315cc69ba5e372911e77d6cdfdc5843c1c012c", // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, // Use 'forwardPorts' to make a list of ports inside the container available locally. "forwardPorts": [5173], "portsAttributes": { "5173": { "label": "Docs" } }, // Use 'postCreateCommand' to run commands after the container is created. "postCreateCommand": "npm install -g pnpm && pnpm install", // Configure tool-specific properties. "customizations": { "vscode": { "extensions": [ "dbaeumer.vscode-eslint", "editorconfig.editorconfig", "esbenp.prettier-vscode", "redhat.vscode-yaml", "github.vscode-pull-request-github" ] } } // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. // "remoteUser": "root" }