simple-ocpp-cs/.devcontainer/frontend/devcontainer.json

28 lines
697 B
JSON
Raw Permalink Normal View History

2025-03-12 23:06:31 +00:00
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/javascript-node
{
"name": "Node.js",
2025-03-12 23:06:31 +00:00
"dockerComposeFile": "docker-compose.yml",
"service": "app",
"workspaceFolder": "/simple-ocpp-cs",
2025-03-12 23:06:31 +00:00
"shutdownAction": "stopCompose",
// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [
5173
2025-03-12 23:06:31 +00:00
],
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
2025-03-13 22:47:06 +00:00
"svelte.svelte-vscode",
"Lokalise.i18n-ally",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
2025-03-12 23:06:31 +00:00
"eamodio.gitlens"
]
}
}
}