compose-action/.devcontainer/devcontainer.json
Emilien Escalle 20e118500b chore: use esbuild builder
Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
2026-08-05 15:39:03 +00:00

33 lines
839 B
JSON

{
"name": "Debian",
"image": "mcr.microsoft.com/devcontainers/base:bullseye",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"configureZshAsDefaultShell": true
},
"ghcr.io/devcontainers/features/node:2": {},
"ghcr.io/devcontainers/features/docker-in-docker:4": {
"moby": false
},
"ghcr.io/devcontainers/features/github-cli:1": {}
},
"remoteEnv": {
"GITHUB_TOKEN": "${localEnv:GITHUB_TOKEN}"
},
"customizations": {
"vscode": {
"extensions": [
"eamodio.gitlens",
"github.copilot",
"github.copilot-chat",
"github.vscode-github-actions",
"ms-vscode.makefile-tools",
"bierner.markdown-preview-github-styles",
"esbenp.prettier-vscode",
"biomejs.biome",
"vitest.explorer"
]
}
}
}