kuru-kuru/.devcontainer/devcontainer.json

19 lines
402 B
JSON
Raw Normal View History

2023-09-10 23:42:52 +00:00
{
"image": "mcr.microsoft.com/devcontainers/base:debian",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"nonFreePackages": true,
"upgradePackages": true
}
2023-09-11 00:04:40 +00:00
},
"postCreateCommand": "curl -fsSL https://deno.land/x/install/install.sh | sh",
2023-09-11 00:04:40 +00:00
"customizations": {
"vscode": {
"extensions": [
"sastan.twind-intellisense",
"denoland.vscode-deno"
]
}
}
2023-09-10 23:42:52 +00:00
}