|
| 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:1-22-bookworm", |
| 7 | + "features": { |
| 8 | + "ghcr.io/devcontainers/features/common-utils:2": {}, |
| 9 | + "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}, |
| 10 | + "ghcr.io/jckimble/devcontainer-features/ngrok:3": {}, |
| 11 | + "ghcr.io/devcontainers/features/terraform:1": {}, |
| 12 | + "ghcr.io/devcontainers/features/go:1": {}, |
| 13 | + "ghcr.io/devcontainers-extra/features/cmake:1": {}, |
| 14 | + "ghcr.io/devcontainers/features/aws-cli:1": {} |
| 15 | + }, |
| 16 | + "customizations": { |
| 17 | + "vscode": { |
| 18 | + "extensions": [ |
| 19 | + "vitest.explorer", |
| 20 | + "github.vscode-github-actions", |
| 21 | + "yy0931.vscode-sqlite3-editor", |
| 22 | + "Sarrus.sourcepawn-vscode", |
| 23 | + "yzhang.markdown-all-in-one" |
| 24 | + ] |
| 25 | + } |
| 26 | + }, |
| 27 | + "appPort": [ |
| 28 | + "27100:27100/udp", |
| 29 | + "27101:27101/udp" |
| 30 | + ] |
| 31 | + |
| 32 | + // Features to add to the dev container. More info: https://containers.dev/features. |
| 33 | + // "features": {}, |
| 34 | + |
| 35 | + // Use 'forwardPorts' to make a list of ports inside the container available locally. |
| 36 | + // "forwardPorts": [], |
| 37 | + |
| 38 | + // Use 'postCreateCommand' to run commands after the container is created. |
| 39 | + // "postCreateCommand": "yarn install", |
| 40 | + |
| 41 | + // Configure tool-specific properties. |
| 42 | + // "customizations": {}, |
| 43 | + |
| 44 | + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. |
| 45 | + // "remoteUser": "root" |
| 46 | +} |
0 commit comments