Files
node/.devcontainer/devcontainer.json

22 lines
417 B
JSON
Raw Normal View History

2019-04-16 19:41:33 -07:00
{
"name": "Node.js",
2024-04-05 13:14:58 +05:30
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-18-bullseye",
"forwardPorts": [
3000
],
2022-05-17 12:41:33 -07:00
"customizations": {
"vscode": {
"settings": {},
2022-05-17 12:41:33 -07:00
"extensions": [
"streetsidesoftware.code-spell-checker"
2022-05-17 12:41:33 -07:00
]
}
},
2021-03-16 15:59:13 +00:00
"portsAttributes": {
2023-07-19 17:06:04 -04:00
"3000": {
2021-04-19 12:21:28 -07:00
"label": "Hello Remote World",
"onAutoForward": "notify"
2021-03-16 15:59:13 +00:00
}
},
2025-10-28 19:54:16 +08:00
"postAttachCommand": "yarn install && npm run debug"
}