microsoft/qdk

Public

mirrored from https://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
09c0a2ec31fd24b052f56de3f12ffd7706c0cfbf

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.devcontainer/devcontainer.json

32lines · 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/rust
3{
4 "name": "qsharp",
5 "image": "mcr.microsoft.com/devcontainers/rust:dev-bullseye",
6 "features": {
7 "ghcr.io/devcontainers/features/node:1": {
8 "nodeGypDependencies": true,
9 "version": "lts"
10 },
11 "ghcr.io/devcontainers/features/python:1": {
12 "installTools": true,
13 "installJupyterlab": true,
14 "version": "latest"
15 }
16 },
17 "postCreateCommand": "npm install -g wasm-pack",
18 "customizations": {
19 "vscode": {
20 "extensions": [
21 "DavidAnson.vscode-markdownlint",
22 "dbaeumer.vscode-eslint",
23 "esbenp.prettier-vscode",
24 "ms-python.python",
25 "ms-python.black-formatter",
26 "rust-lang.rust-analyzer",
27 "vadimcn.vscode-lldb",
28 "swellaby.workspace-config-plus"
29 ]
30 }
31 }
32}
33