devcontainer.json 539 B

123456789101112131415161718
  1. // See https://aka.ms/vscode-remote/devcontainer.json for format details.
  2. {
  3. "name": "Node.js 8",
  4. "dockerFile": "Dockerfile",
  5. // Uncomment the next line if you want to publish any ports.
  6. // "appPort": [],
  7. // Uncomment the next line if you want to add in default container specific settings.json values
  8. // "settings": { "workbench.colorTheme": "Quiet Light" },
  9. // Uncomment the next line to run commands after the container is created.
  10. // "postCreateCommand": "yarn install",
  11. "extensions": [
  12. // "dbaeumer.vscode-eslint"
  13. ]
  14. }