PSRule-vscode/.devcontainer/devcontainer.json

33 строки
1.0 KiB
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/typescript-node
{
"name": "Development container for PSRule VS Code extension",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm",
"features": {
"ghcr.io/devcontainers/features/dotnet:2": {
"version": "8.0"
},
"ghcr.io/devcontainers/features/github-cli:1": {
"installDirectlyFromGitHubRelease": true,
"version": "latest"
},
"ghcr.io/devcontainers/features/powershell:1": {
"version": "latest"
}
},
"customizations": {
"vscode": {
"extensions": [
"github.vscode-pull-request-github",
"ms-dotnettools.csdevkit",
"eamodio.gitlens",
"MS-SarifVSCode.sarif-viewer",
"dbaeumer.vscode-eslint",
"github.vscode-github-actions",
"redhat.vscode-yaml"
]
}
}
}