flupke_website/.devcontainer/devcontainer.json

33 lines
1.1 KiB
JSON
Raw Normal View History

2023-11-13 17:16:39 +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/typescript-node
{
"name": "Node.js & TypeScript",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye",
"customizations": {
"vscode": {
"extensions": [
"mhutchie.git-graph",
"GitHub.copilot",
"esbenp.prettier-vscode",
"bradlc.vscode-tailwindcss"
]
}
2023-11-14 20:13:02 +00:00
},
2023-11-13 17:16:39 +00:00
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
2023-11-14 20:13:02 +00:00
"forwardPorts": [1234],
2023-11-13 17:16:39 +00:00
2023-11-14 20:13:02 +00:00
// Use 'postCreateCommand' to run commands after the container is creahowted.
"postCreateCommand": "npm i"
2023-11-13 17:16:39 +00:00
// Configure tool-specific properties.
// "customizations": {},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}