Files
vscode/extensions/copilot/.devcontainer/devcontainer.json
T
Pierce Boggan 927a286904 fix: update devcontainer and postinstall configurations (#88)
- Updated `devcontainer.json` to ensure `git-lfs` is initialized on container creation.
- Modified `postinstall.ts` to adjust the `REPO_ROOT` path for better directory structure.
2025-07-02 17:44:31 +00:00

37 lines
1.1 KiB
JSON

// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
{
"name": "Node.js & TypeScript",
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/azure-cli:1": {},
"ghcr.io/devcontainers/features/python:1": {},
"ghcr.io/devcontainers/features/dotnet:2": {},
"ghcr.io/devcontainers/features/desktop-lite:1": {},
"ghcr.io/devcontainers/features/git-lfs:1": {}
},
"containerEnv": {
"DEBIAN_FRONTEND": "noninteractive"
},
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"connor4312.esbuild-problem-matchers",
"GitHub.copilot@prerelease",
"ms-vscode.extension-test-runner"
]
}
},
"hostRequirements": {
"cpus": 4
},
"containerUser": "node",
"onCreateCommand": {
"initGitLfs": "git lfs install --force",
"npmInstall": "npm install || true"
}
}