Files
maven-dependency-submission…/.devcontainer/devcontainer.json
T

15 lines
373 B
JSON
Raw Normal View History

2022-08-12 12:15:51 +00:00
{
"image": "ghcr.io/octodemo/development-containers/javascript:base-202401-r1",
"customizations": {
"vscode": {
"extensions": [
2024-01-23 15:58:26 +00:00
"kingwl.vscode-vitest-runner",
"GitHub.copilot"
]
}
},
2022-08-12 12:15:51 +00:00
// Install JDK and Maven for testing purposes
2024-01-12 17:12:54 +00:00
"postCreateCommand": "sudo .devcontainer/install_maven.sh",
2022-08-12 12:15:51 +00:00
"postStartCommand": "npm install"
}