generated from devcontainers/feature-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
44 lines (44 loc) · 1.32 KB
/
devcontainer-feature.json
File metadata and controls
44 lines (44 loc) · 1.32 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
{
"id": "elm-lang",
"name": "Elm Language Compiler (via Github Releases)",
"version": "0.1.0",
"documentationURL": "https://github.com/CodeMan99/features/tree/main/src/elm-lang",
"description": "Install the elm language compiler and related tools",
"options": {
"version": {
"default": "0.19.1",
"description": "Specify the compiler version",
"type": "string"
},
"elmPrefix": {
"default": "/usr/local/bin",
"description": "Where the \"elm\" binary will be installed",
"type": "string"
},
"installFormat": {
"default": true,
"description": "Install the \"elm-format\" command (via npm if installed)",
"type": "boolean"
},
"installReview": {
"default": true,
"description": "Install the \"elm-review\" command (via npm if installed)",
"type": "boolean"
},
"installTest": {
"default": true,
"description": "Install the \"elm-test\" command (via npm if installed)",
"type": "boolean"
}
},
"customizations": {
"vscode": {
"extensions": [
"Elmtooling.elm-ls-vscode"
]
}
},
"installsAfter": [
"ghcr.io/devcontainers/features/node"
]
}