Skip to content

Commit

Permalink
🔵 other: add devcontainer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
maxisam committed Sep 29, 2023
1 parent 376f535 commit a8e2c61
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
// 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",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye",
"features": {
"ghcr.io/devcontainers/features/dotnet:2": {
"version": "lts"
},
"ghcr.io/devcontainers/features/github-cli:1": {
"installDirectlyFromGitHubRelease": true,
"version": "latest"
}
},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "yarn install",

"customizations": {
"vscode": {
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"streetsidesoftware.code-spell-checker",
"bierner.emojisense",
"djlynn03.add-to-git-ignore",
"EditorConfig.EditorConfig",
"dbaeumer.vscode-eslint",
"mhutchie.git-graph",
"GitHub.copilot",
"GitHub.copilot-chat",
"eamodio.gitlens",
"vespa-dev-works.jestRunIt",
"firsttris.vscode-jest-runner",
"kavod-io.vscode-jest-test-adapter",
"christian-kohler.path-intellisense",
"pflannery.vscode-versionlens",
"rioukkevin.vscode-git-commit",
"ms-vscode.vscode-typescript-next"
]
}
}

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}

0 comments on commit a8e2c61

Please sign in to comment.