Files
node/.devcontainer/devcontainer.json

23 lines
391 B
JSON
Raw Normal View History

2022-11-16 11:23:50 -06:00
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",
2022-11-16 11:23:50 -06:00
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-02-18 15:31:14 +00: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"
2020-02-27 15:34:04 +01:00
}