cloudflare/cloudflare-typescript
Publicmirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable
.devcontainer/devcontainer.json
17lines · modecode
| 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": [ |
| 13 | "esbenp.prettier-vscode" |
| 14 | ] |
| 15 | } |
| 16 | } |
| 17 | } |
| 18 | |