Files
node/.devcontainer/devcontainer.json

12 lines
266 B
JSON
Raw Normal View History

2019-04-16 19:41:33 -07:00
{
2019-04-27 08:20:42 -07:00
"name": "Node.js Sample",
"dockerFile": "Dockerfile",
"appPort": 3000,
"extensions": [
"dbaeumer.vscode-eslint"
],
2019-06-20 23:30:08 +00:00
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
2019-04-27 08:20:42 -07:00
"postCreateCommand": "yarn install"
2019-04-16 19:41:33 -07:00
}