forked from JSONbored/metagraphed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
30 lines (30 loc) · 984 Bytes
/
Copy pathdevcontainer.json
File metadata and controls
30 lines (30 loc) · 984 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
{
"name": "metagraphed",
"image": "mcr.microsoft.com/devcontainers/javascript-node:22-bookworm",
// Pinned (not @latest): postCreateCommand runs unattended on every container
// create, so an unpinned version would auto-execute whatever a compromised
// upstream publish contained. When #3769 lands Playwright as a real devDependency
// in apps/ui/package.json, re-pin this to match that version.
"postCreateCommand": "npm install && npx --yes playwright@1.61.1 install --with-deps chromium",
"forwardPorts": [8080],
"portsAttributes": {
"8080": {
"label": "apps/ui dev server",
"onAutoForward": "notify"
}
},
"remoteUser": "node",
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"editorconfig.editorconfig"
],
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
}
}
}
}