devcontainer.json 526 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "Contribute to Astro",
  3. "build": {
  4. "dockerfile": "Dockerfile"
  5. },
  6. "features": {
  7. "ghcr.io/devcontainers/features/desktop-lite:1": {}
  8. },
  9. "postCreateCommand": "pnpm install && pnpm run build",
  10. "waitFor": "postCreateCommand",
  11. "postAttachCommand": {
  12. "Astro tests": "pnpm run test"
  13. },
  14. "customizations": {
  15. "codespaces": {
  16. "openFiles": ["README.md", "CONTRIBUTING.md"]
  17. },
  18. "vscode": {
  19. "extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"]
  20. }
  21. }
  22. }