mirror of
https://github.com/brucificus/vb6-antlr4-typescript.git
synced 2025-12-16 11:57:03 +03:00
👨💻 Adds devcontainer
This commit is contained in:
50
.devcontainer/devcontainer.json
Normal file
50
.devcontainer/devcontainer.json
Normal file
@@ -0,0 +1,50 @@
|
||||
// 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"
|
||||
}
|
||||
Reference in New Issue
Block a user