wingmate-rs/.devcontainer/devcontainer.json

31 lines
874 B
JSON

// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
{
"name": "Ubuntu Dev",
"image": "ubuntu-dev:user",
"customizations": {
"vscode": {
"extensions": [
"rust-lang.rust-analyzer",
"dustypomerleau.rust-syntax",
"1YiB.rust-bundle",
"serayuzgur.crates",
"tamasfe.even-better-toml",
"ms-azuretools.vscode-docker"
]
}
}
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Configure tool-specific properties.
// "customizations": {},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}