Files
Lucina3DS/externals/cryptopp-cmake/.devcontainer/devcontainer.json
2025-02-06 22:24:29 +08:00

33 lines
1.4 KiB
JSON

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.205.2/containers/python-3
{
"name": "cryptopp-cmake_dev",
"build": {
"dockerfile": "Dockerfile",
"context": "..",
"args": {
// Update 'VARIANT' to pick a Python version: 3, 3.10, 3.9, 3.8, 3.7, 3.6
// Append -bullseye or -buster to pin to an OS version.
// Use -bullseye variants on local on arm64/Apple Silicon.
"VARIANT": "3.10-bullseye",
// Options
"NODE_VERSION": "16"
}
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"cheshirekow.cmake-format",
"donjayamanne.githistory",
"editorconfig.editorconfig",
"ms-vscode.cmake-tools",
"redhat.vscode-yaml",
"stkb.rewrap",
"streetsidesoftware.code-spell-checker"
],
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "npx husky install < /dev/null",
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode"
}