Skip to content

Commit

Permalink
add devcontainer configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Haberkamp committed Sep 6, 2024
1 parent 340f7af commit 016b511
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "Meteor Monorepo",
"image": "mcr.microsoft.com/devcontainers/javascript-node:0-20",
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "lts"
},
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"Vue.volar"
],
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
},
"postCreateCommand": "pnpm install",
"containerEnv": {
"PUPPETEER_SKIP_CHROMIUM_DOWNLOAD": "true"
},
"remoteUser": "node"
}

0 comments on commit 016b511

Please sign in to comment.