aboutsummaryrefslogtreecommitdiff
path: root/.devcontainer/integration/devcontainer.json
blob: 8e6a4df8d852bbcd0b3457ee88aa474437a1f411 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "name": "Integration Package",
  "build": {
    "dockerfile": "../examples.Dockerfile"
  },

  "workspaceFolder": "/workspaces/astro/examples/integration",

  "postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build",

  "waitFor": "postCreateCommand",

  "customizations": {
    "codespaces": {
      "openFiles": ["index.ts"]
    },
    "vscode": {
      "extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"]
    }
  }
}