Files
node/.devcontainer/devcontainer.json
2025-10-27 15:07:20 +08:00

25 lines
413 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"
}
},
"postCreateCommand": "yarn install",
"postStartCommand": "npm run debug"
}