2023-12-28 13:55:42 +00:00
|
|
|
// 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": "Node.js & TypeScript",
|
|
|
|
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
|
|
|
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bookworm",
|
|
|
|
|
|
|
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
|
|
|
"features": {
|
2023-12-30 03:35:09 +00:00
|
|
|
"ghcr.io/devcontainers/features/git-lfs:1": {},
|
|
|
|
"ghcr.io/rocker-org/devcontainer-features/apt-packages:1": {
|
|
|
|
"packages": "git-flow"
|
|
|
|
}
|
2023-12-28 13:55:42 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
|
|
// "forwardPorts": [],
|
|
|
|
|
|
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
|
|
// "postCreateCommand": "yarn install",
|
|
|
|
"postStartCommand": "yarn install",
|
|
|
|
|
|
|
|
// Configure tool-specific properties.
|
|
|
|
"customizations": {
|
|
|
|
"vscode": {
|
|
|
|
"extensions": [
|
2023-12-30 03:35:09 +00:00
|
|
|
"esbenp.prettier-vscode",
|
|
|
|
"mhutchie.git-graph"
|
2023-12-28 13:55:42 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
|
|
|
// "remoteUser": "root"
|
|
|
|
}
|