27 lines
499 B
JSON
27 lines
499 B
JSON
{
|
|
"name": "React Dev Container",
|
|
"build": {
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {
|
|
"terminal.integrated.defaultProfile.linux": "zsh"
|
|
}
|
|
},
|
|
"extensions": [
|
|
"esbenp.prettier-vscode",
|
|
"dbaeumer.vscode-eslint"
|
|
]
|
|
},
|
|
"forwardPorts": [3000],
|
|
"portsAttributes": {
|
|
"3000": {
|
|
"label": "React Dev Server",
|
|
"onAutoForward": "notify"
|
|
}
|
|
},
|
|
"postCreateCommand": "npm install",
|
|
"remoteUser": "node"
|
|
}
|