forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
34 lines (34 loc) · 784 Bytes
/
devcontainer.json
File metadata and controls
34 lines (34 loc) · 784 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
33
34
{
"name": "ReScript Compiler",
"build": {
"context": ".",
"dockerfile": "Dockerfile",
"args": {
"USER_UID": "${localEnv:UID}",
"USER_GID": "${localEnv:GID}"
}
},
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {
"installDirectlyFromGitHubRelease": true,
"version": "latest"
},
"ghcr.io/devcontainers/features/node:1": {
"version": "22",
"installYarnUsingApt": false
}
},
"customizations": {
"vscode": {
"extensions": [
"ocamllabs.ocaml-platform",
"chenglou92.rescript-vscode",
"biomejs.biome",
"rust-lang.rust-analyzer"
]
}
},
"postCreateCommand": ".devcontainer/postCreate.sh",
"remoteUser": "vscode",
"containerUser": "vscode"
}