shared-actions/.devcontainer/devcontainer.json
Michael Seele 5f542e7a12
All checks were successful
validate-shared-actions / validate-shared-actions (pull_request) Successful in 1m17s
chore: remove unused extensions
2026-05-04 07:13:53 +00:00

21 lines
913 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/typescript-node
{
"build": {
"dockerfile": "Dockerfile"
},
"mounts": [
"source=${localEnv:HOME}/.devcontainer/.config/,target=/home/ubuntu/.config/,type=bind,consistency=cached",
"source=${localEnv:HOME}/.devcontainer/.zshrc,target=/home/ubuntu/.zshrc_user,type=bind,consistency=cached",
"source=${localEnv:HOME}/.devcontainer/.commandhistory/,target=/commandhistory/,type=bind,consistency=cached",
"source=${localEnv:HOME}/.devcontainer/.aws/,target=/home/ubuntu/.aws/,type=bind,consistency=cached"
// Project specific mounts
],
"customizations": {
"vscode": {
"extensions": [
"amazonwebservices.aws-toolkit-vscode"
]
}
}
}