Skip to content

Commit 89f8e05

Browse files
committed
chore: add changeset
1 parent 4efe378 commit 89f8e05

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.devcontainer/Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FROM mcr.microsoft.com/devcontainers/typescript-node:18
2+
3+
RUN corepack enable
4+
5+
# Install browsers
6+
RUN pnpm dlx playwright install && sudo pnpm dlx playwright install-deps

.devcontainer/devcontainer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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/docker-existing-dockerfile
3+
{
4+
"name": "Dev",
5+
"build": {
6+
"dockerfile": "./Dockerfile"
7+
},
8+
"customizations": {
9+
// Configure properties specific to VS Code.
10+
"vscode": {
11+
// Add the IDs of extensions you want installed when the container is created.
12+
"extensions": [
13+
"dbaeumer.vscode-eslint",
14+
"VisualStudioExptTeam.intellicode-api-usage-examples",
15+
"VisualStudioExptTeam.vscodeintellicode",
16+
"GitHub.copilot",
17+
"ms-playwright.playwright"
18+
]
19+
}
20+
}
21+
}

0 commit comments

Comments
 (0)