···11+// For format details, see https://aka.ms/devcontainer.json. For config options, see the
22+// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
33+{
44+ "name": "Node.js & TypeScript",
55+ // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
66+ "image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm",
77+ "features": {
88+ "ghcr.io/devcontainers-community/features/deno:1": {}
99+ },
1010+1111+ // Features to add to the dev container. More info: https://containers.dev/features.
1212+ // "features": {},
1313+1414+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
1515+ "forwardPorts": [7000]
1616+1717+ // Use 'postCreateCommand' to run commands after the container is created.
1818+ // "postCreateCommand": "yarn install",
1919+2020+ // Configure tool-specific properties.
2121+ // "customizations": {},
2222+2323+ // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
2424+ // "remoteUser": "root"
2525+}