25 lines
413 B
JSON
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"
|
|
}
|