microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.3.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

.devcontainer/devcontainer.json

30lines · modeblame

f17b0179Stefan J. Wernli2 years ago1// For format details, see https://aka.ms/devcontainer.json. For config options, see the
93f01d0dIan Davis2 years ago2// README at: https://github.com/devcontainers/templates/tree/main/src/cpp
f17b0179Stefan J. Wernli2 years ago3{
4"name": "qsharp",
93f01d0dIan Davis2 years ago5"image": "mcr.microsoft.com/devcontainers/cpp",
f17b0179Stefan J. Wernli2 years ago6"features": {
93f01d0dIan Davis2 years ago7"ghcr.io/devcontainers/features/python:1": {},
f17b0179Stefan J. Wernli2 years ago8"ghcr.io/devcontainers/features/node:1": {
9"nodeGypDependencies": true,
10"version": "lts"
11},
99f984c2Stefan J. Wernli2 years ago12"ghcr.io/devcontainers/features/rust:1": {}
f17b0179Stefan J. Wernli2 years ago13},
99f984c2Stefan J. Wernli2 years ago14"postCreateCommand": "npm install -g wasm-pack && cargo update --dry-run",
f17b0179Stefan J. Wernli2 years ago15"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",
6ef659b1Mine Starks2 years ago23"ms-toolsai.jupyter",
f17b0179Stefan J. Wernli2 years ago24"rust-lang.rust-analyzer",
25"vadimcn.vscode-lldb",
26"swellaby.workspace-config-plus"
27]
28}
29}
30}