devcontainer.json 468 B

123456789101112131415
  1. // For format details, see https://aka.ms/devcontainer.json. For config options, see the
  2. // README at: https://github.com/devcontainers/templates/tree/main/src/debian
  3. {
  4. "name": "Development",
  5. "image": "mcr.microsoft.com/devcontainers/typescript-node:latest",
  6. "features": {
  7. "ghcr.io/devcontainers/features/node:1": {}
  8. },
  9. "postCreateCommand": "yarn install",
  10. "customizations": {
  11. "vscode": {
  12. "extensions": ["esbenp.prettier-vscode"]
  13. }
  14. }
  15. }