|
| 1 | +// For format details, see https://aka.ms/devcontainer.json. For config options, see the |
| 2 | +// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node |
| 3 | +{ |
| 4 | + "name": "Node.js & TypeScript", |
| 5 | + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile |
| 6 | + "image": "mcr.microsoft.com/devcontainers/typescript-node:0-18", |
| 7 | + // Features to add to the dev container. More info: https://containers.dev/features. |
| 8 | + "features": { |
| 9 | + "ghcr.io/devcontainers/features/aws-cli:1": {}, |
| 10 | + "ghcr.io/devcontainers/features/azure-cli:1": {}, |
| 11 | + "ghcr.io/devcontainers/features/common-utils:2": {}, |
| 12 | + "ghcr.io/devcontainers/features/git:1": {}, |
| 13 | + "ghcr.io/rocker-org/devcontainer-features/apt-packages:1": {}, |
| 14 | + "ghcr.io/devcontainers-contrib/features/curl-apt-get:1": {}, |
| 15 | + "ghcr.io/devcontainers-contrib/features/zsh-plugins:0": {}, |
| 16 | + "ghcr.io/eitsupi/devcontainer-features/jq-likes:1": {} |
| 17 | + }, |
| 18 | + "customizations": { |
| 19 | + "vscode": { |
| 20 | + "extensions": [ |
| 21 | + "amazonwebservices.aws-toolkit-vscode", |
| 22 | + "ms-vscode.azurecli", |
| 23 | + "dbaeumer.vscode-eslint", |
| 24 | + "vscodevim.vim", |
| 25 | + "vscode-icons-team.vscode-icons", |
| 26 | + "streetsidesoftware.code-spell-checker", |
| 27 | + "alexdima.copy-relative-path", |
| 28 | + "EditorConfig.EditorConfig", |
| 29 | + "donjayamanne.githistory", |
| 30 | + "eamodio.gitlens", |
| 31 | + "esbenp.prettier-vscode", |
| 32 | + "humao.rest-client", |
| 33 | + "burkeholland.simple-react-snippets", |
| 34 | + "miclo.sort-typescript-imports", |
| 35 | + "ChakrounAnas.turbo-console-log", |
| 36 | + "styled-components.vscode-styled-components" |
| 37 | + ] |
| 38 | + } |
| 39 | + } |
| 40 | + |
| 41 | + // "features": {}, |
| 42 | + |
| 43 | + // Use 'forwardPorts' to make a list of ports inside the container available locally. |
| 44 | + // "forwardPorts": [], |
| 45 | + |
| 46 | + // Use 'postCreateCommand' to run commands after the container is created. |
| 47 | + // "postCreateCommand": "yarn install", |
| 48 | + |
| 49 | + // Configure tool-specific properties. |
| 50 | + // "customizations": {}, |
| 51 | + |
| 52 | + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. |
| 53 | + // "remoteUser": "root" |
| 54 | +} |
0 commit comments