Files
node/.devcontainer/devcontainer.json

23 lines
392 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"
}
},
"postSAttachCommand": "yarn install && npm run debug"
}