devcontainer.json 594 B

12345678910111213141516171819202122
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. {
  5. "name": "carbon-lang",
  6. "build": {
  7. "dockerfile": "../docker/ubuntu2204/base/Dockerfile"
  8. },
  9. "customizations": {
  10. "vscode": {
  11. "extensions": [
  12. "bazelbuild.vscode-bazel",
  13. "bierner.github-markdown-preview",
  14. "daohong-emilio.yash",
  15. "esbenp.prettier-vscode",
  16. "llvm-vs-code-extensions.vscode-clangd",
  17. "ms-python.python"
  18. ]
  19. }
  20. }
  21. }