forked from microsoft/TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
28 lines (28 loc) · 952 Bytes
/
Copy pathdevcontainer.json
File metadata and controls
28 lines (28 loc) · 952 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:dev-1.26-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 dependencies": "npm ci; go -C ./tsc mod download; go -C ./tools mod download",
"Install repository tools": "npx hereby install-tools; go install github.com/google/pprof@latest",
"Install Graphviz": "sudo apt update -y; sudo apt install -y graphviz"
},
"customizations": {
"vscode": {
"extensions": [
"dprint.dprint",
"golang.go"
]
}
}
}