Installs TypeScript toolchain, bundlers, linters, file watchers, and Bun runtime for Node.js development.
| Option | Description | Type | Default |
|---|---|---|---|
install |
Comma-separated list of tool groups to install (e.g. "typescript,bun"). When set, only the listed groups are installed. When empty, all groups are installed. |
string | "" |
omit |
Comma-separated list of tool groups to exclude (e.g. "bun"). When set, the listed groups are skipped. Applied after install filtering. |
string | "" |
Add this feature to your devcontainer.json:
{
"features": {
"ghcr.io/get2knowio/devcontainer-features/node-dev-tools:2": {
"install": "typescript,bun"
}
}
}Requires: Node.js (installs after ghcr.io/devcontainers/features/node)
{ "features": { "ghcr.io/get2knowio/devcontainer-features/node-dev-tools:2": {} } }