microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
4a88da0baa5c89e0220d24ef95de2b2c5768972a

Branches

Tags

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

Clone

HTTPS

Download ZIP

.devcontainer/devcontainer.json

29lines · 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/python:3",
6 "features": {
7 "ghcr.io/devcontainers/features/node:1": {
8 "nodeGypDependencies": true,
9 "version": "lts"
10 },
11 "ghcr.io/devcontainers/features/rust:1": {}
12 },
13 "postCreateCommand": "npm install -g wasm-pack && cargo update --dry-run",
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",
22 "ms-toolsai.jupyter",
23 "rust-lang.rust-analyzer",
24 "vadimcn.vscode-lldb",
25 "swellaby.workspace-config-plus"
26 ]
27 }
28 }
29}
30