bgenc.net/.devcontainer/devcontainer.json

31 lines
1.1 KiB
JSON
Raw Normal View History

// 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
{
2024-06-22 09:29:07 -05:00
"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-22-bookworm",
"features": {
"ghcr.io/devcontainers/features/git-lfs:1": {}
},
2024-06-22 09:29:07 -05:00
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
2024-06-22 09:29:07 -05:00
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
2024-06-22 09:29:07 -05:00
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "npm install",
2024-06-22 09:29:07 -05:00
// Configure tool-specific properties.
// "customizations": {},
2024-06-22 09:29:07 -05:00
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
"remoteUser": "root",
"customizations": {
"vscode": {
"extensions": ["svelte.svelte-vscode", "esbenp.prettier-vscode"]
}
}
}