diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..8a74342b --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -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" +}