kuru-kuru/.devcontainer/devcontainer.json

19 lines
473 B
JSON

{
"image": "mcr.microsoft.com/devcontainers/base:debian",
"features": {
"ghcr.io/codesandbox/devcontainer-features/codesandbox:latest": {},
"ghcr.io/devcontainers/features/common-utils:2": {
"nonFreePackages": true,
"upgradePackages": true
}
},
"postStartCommand": "curl -fsSL https://deno.land/x/install/install.sh | sh",
"customizations": {
"vscode": {
"extensions": [
"sastan.twind-intellisense",
"denoland.vscode-deno"
]
}
}
}