microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.2.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

.devcontainer/devcontainer.json

29lines · modeblame

f17b0179Stefan J. Wernli2 years ago1// 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 ago5"image": "mcr.microsoft.com/devcontainers/python:3",
f17b0179Stefan J. Wernli2 years ago6"features": {
7"ghcr.io/devcontainers/features/node:1": {
8"nodeGypDependencies": true,
9"version": "lts"
10},
99f984c2Stefan J. Wernli2 years ago11"ghcr.io/devcontainers/features/rust:1": {}
f17b0179Stefan J. Wernli2 years ago12},
99f984c2Stefan J. Wernli2 years ago13"postCreateCommand": "npm install -g wasm-pack && cargo update --dry-run",
f17b0179Stefan J. Wernli2 years ago14"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 ago22"ms-toolsai.jupyter",
f17b0179Stefan J. Wernli2 years ago23"rust-lang.rust-analyzer",
24"vadimcn.vscode-lldb",
25"swellaby.workspace-config-plus"
26]
27}
28}
29}