mirror of
https://github.com/bspeice/speice.io
synced 2024-11-14 22:18:10 -05:00
20 lines
679 B
JSON
20 lines
679 B
JSON
// 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",
|
|
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm",
|
|
"runArgs": ["--userns=keep-id"],
|
|
"containerUser": "node",
|
|
"containerEnv": {
|
|
"HOME": "/home/node"
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"ChrisChinchilla.vale-vscode"
|
|
]
|
|
}
|
|
},
|
|
"onCreateCommand": "bash -c 'mkdir -p ~/.local/bin && wget -qO- https://github.com/errata-ai/vale/releases/download/v2.21.0/vale_2.21.0_Linux_64-bit.tar.gz | tar xz -C ~/.local/bin'"
|
|
}
|