microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
.devcontainer/devcontainer.json
30lines · modecode
| 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/ubuntu |
| 3 | { |
| 4 | "name": "qsharp", |
| 5 | "image": "mcr.microsoft.com/devcontainers/base:noble", |
| 6 | "features": { |
| 7 | "ghcr.io/devcontainers/features/python:1": {}, |
| 8 | "ghcr.io/devcontainers/features/node:1": { |
| 9 | "nodeGypDependencies": true, |
| 10 | "version": "lts" |
| 11 | }, |
| 12 | "ghcr.io/devcontainers/features/rust:1": {} |
| 13 | }, |
| 14 | "postCreateCommand": "npm install -g wasm-pack && cargo update --dry-run", |
| 15 | "customizations": { |
| 16 | "vscode": { |
| 17 | "extensions": [ |
| 18 | "DavidAnson.vscode-markdownlint", |
| 19 | "dbaeumer.vscode-eslint", |
| 20 | "esbenp.prettier-vscode", |
| 21 | "ms-python.python", |
| 22 | "ms-python.black-formatter", |
| 23 | "ms-toolsai.jupyter", |
| 24 | "rust-lang.rust-analyzer", |
| 25 | "vadimcn.vscode-lldb", |
| 26 | "swellaby.workspace-config-plus" |
| 27 | ] |
| 28 | } |
| 29 | } |
| 30 | } |
| 31 | |