I found this devcontainer works really well:
{
"name": "Sugarcube code environment",
"image": "mcr.microsoft.com/devcontainers/typescript-node:22-bookworm",
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "22"
},
"ghcr.io/shyim/devcontainers-features/bun:0": {}
},
"appPort": ["3001:3001"],
"customizations": {
"vscode": {
"extensions": [
"heybourn.headwind",
"oderwat.indent-rainbow",
"vunguyentuan.vscode-postcss",
"esbenp.prettier-vscode",
"yoavbls.pretty-ts-errors",
"bradlc.vscode-tailwindcss",
"cyrusfirheir.twee3-language-tools",
"hirse.vscode-ungit"
]
}
}
}
I found this devcontainer works really well:
{ "name": "Sugarcube code environment", "image": "mcr.microsoft.com/devcontainers/typescript-node:22-bookworm", "features": { "ghcr.io/devcontainers/features/node:1": { "version": "22" }, "ghcr.io/shyim/devcontainers-features/bun:0": {} }, "appPort": ["3001:3001"], "customizations": { "vscode": { "extensions": [ "heybourn.headwind", "oderwat.indent-rainbow", "vunguyentuan.vscode-postcss", "esbenp.prettier-vscode", "yoavbls.pretty-ts-errors", "bradlc.vscode-tailwindcss", "cyrusfirheir.twee3-language-tools", "hirse.vscode-ungit" ] } } }