generated from devcontainers/feature-starter
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
32 lines (32 loc) · 835 Bytes
/
devcontainer-feature.json
File metadata and controls
32 lines (32 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "Bun",
"id": "bun",
"version": "1.2.0",
"description": "Installs Bun (Javascript runtime written in zig)",
"documentationURL": "https://github.com/prulloac/devcontainer-features/tree/main/src/bun",
"options": {
"version": {
"type": "string",
"default": "latest"
},
"useNpm": {
"type": "boolean",
"default": false
}
},
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint"
]
}
},
"containerEnv": {
"NVM_DIR": "/usr/local/share/nvm",
"NVM_SYMLINK_CURRENT": "true",
"PATH": "/usr/local/share/nvm/current/bin:${PATH}"
},
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
}