-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Expand file tree
/
Copy pathdevcontainer.json
More file actions
28 lines (28 loc) · 925 Bytes
/
Copy pathdevcontainer.json
File metadata and controls
28 lines (28 loc) · 925 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
{
"name": "TypeScript Compiler Development",
"image": "mcr.microsoft.com/devcontainers/go:1.27-bookworm",
"features": {
"ghcr.io/devcontainers/features/node:2": {
"version": "24",
"pnpmVersion": "latest",
"nvmVersion": "latest"
},
"ghcr.io/devcontainers-extra/features/dprint-asdf:2": {
"version": "latest"
},
"ghcr.io/devcontainers/features/github-cli:1": {}
},
"postCreateCommand": {
"Install Go Dependencies": "go -C ./tsc mod download && go -C ./tools mod download",
"Install npm Dependencies & Go Tools": "npm ci && npx hereby install-tools",
"Install Graphviz": "sudo apt update -y && sudo apt install -y graphviz"
},
"customizations": {
"vscode": {
"extensions": [
"dprint.dprint",
"golang.go"
]
}
}
}