Files
node/.devcontainer/devcontainer.json
2025-10-28 19:54:16 +08:00

23 lines
391 B
JSON

{
"name": "Node.js",
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-18-bullseye",
"customizations": {
"vscode": {
"settings": {},
"extensions": [
"streetsidesoftware.code-spell-checker"
]
}
},
"portsAttributes": {
"3000": {
"label": "Hello Remote World",
"onAutoForward": "notify"
}
},
"postAttachCommand": "yarn install && npm run debug"
}