microsoft/qdk
Publicmirrored from https://github.com/microsoft/qdkAvailable
.devcontainer/devcontainer.json
29lines · modeblame
f17b0179Stefan J. Wernli2 years ago | 1 | // For format details, see https://aka.ms/devcontainer.json. For config options, see the |
| 2 | // README at: https://github.com/devcontainers/templates/tree/main/src/rust | |
| 3 | { | |
| 4 | "name": "qsharp", | |
99f984c2Stefan J. Wernli2 years ago | 5 | "image": "mcr.microsoft.com/devcontainers/python:3", |
f17b0179Stefan J. Wernli2 years ago | 6 | "features": { |
| 7 | "ghcr.io/devcontainers/features/node:1": { | |
| 8 | "nodeGypDependencies": true, | |
| 9 | "version": "lts" | |
| 10 | }, | |
99f984c2Stefan J. Wernli2 years ago | 11 | "ghcr.io/devcontainers/features/rust:1": {} |
f17b0179Stefan J. Wernli2 years ago | 12 | }, |
99f984c2Stefan J. Wernli2 years ago | 13 | "postCreateCommand": "npm install -g wasm-pack && cargo update --dry-run", |
f17b0179Stefan J. Wernli2 years ago | 14 | "customizations": { |
| 15 | "vscode": { | |
| 16 | "extensions": [ | |
| 17 | "DavidAnson.vscode-markdownlint", | |
| 18 | "dbaeumer.vscode-eslint", | |
| 19 | "esbenp.prettier-vscode", | |
| 20 | "ms-python.python", | |
| 21 | "ms-python.black-formatter", | |
6ef659b1Mine Starks2 years ago | 22 | "ms-toolsai.jupyter", |
f17b0179Stefan J. Wernli2 years ago | 23 | "rust-lang.rust-analyzer", |
| 24 | "vadimcn.vscode-lldb", | |
| 25 | "swellaby.workspace-config-plus" | |
| 26 | ] | |
| 27 | } | |
| 28 | } | |
| 29 | } |