Files
jrx/.devcontainer/devcontainer.json
Kenneth 0a1a4fbf09 Add devcontainer with Node.js 22 and Bun
Installs dependencies for both root and example/ on container creation.

Co-authored-by: Ona <no-reply@ona.com>
2026-02-28 01:03:04 +00:00

15 lines
290 B
JSON

{
"name": "jrx",
"build": {
"context": ".",
"dockerfile": "Dockerfile"
},
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "22"
},
"ghcr.io/nickvdyck/devcontainer-features/bun:1": {}
},
"postCreateCommand": "bun install && cd example && bun install"
}