kv-music/.devcontainer/devcontainer.json
Eduard Prigoana 4c1f8dcf38 devcontainer
2026-02-05 16:39:20 +00:00

22 lines
687 B
JSON

// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/alpine
{
"name": "Alpine Bun Dev Container",
"image": "mcr.microsoft.com/devcontainers/base:alpine-3.22",
"features": {
"ghcr.io/shyim/devcontainers-features/bun:0": {},
"ghcr.io/devcontainer-config/features/dot-config:3": {}
},
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.sendKeybindingsToShell": true,
"workbench.colorTheme": "Lilac"
},
"extensions": [
"shubham-saudolla.lilac"
]
}
},
"postCreateCommand": "bun --version"
}