Files
vb6-antlr4-typescript/.devcontainer/devcontainer.json
Bruce Markham 1b257a71fa 👨‍💻 Adds devcontainer
2023-12-13 23:07:17 -05:00

51 lines
1.6 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/ubuntu
{
"name": "Ubuntu",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/base:jammy",
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {},
"ghcr.io/devcontainers/features/java:1": {
"version": "latest",
"jdkDistro": "ms",
"installMaven": true,
"mavenVersion": "latest"
},
"ghcr.io/devcontainers/features/node:1": {
"version": "20"
}
},
// 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": "uname -a",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"vscjava.vscode-java-pack",
"mike-lischke.vscode-antlr4",
"EditorConfig.EditorConfig",
"Orta.vscode-jest",
"kavod-io.vscode-jest-test-adapter",
"ms-vscode.test-adapter-converter",
"connorshea.vscode-test-explorer-status-bar",
"hbenl.vscode-test-explorer",
"christian-kohler.npm-intellisense",
"VisualStudioExptTeam.vscodeintellicode",
"esbenp.prettier-vscode",
"swellaby.node-pack"
]
}
}
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}