This repository has been archived on 2025-05-18. You can view files and clone it, but cannot push or open issues or pull requests.
assistant-base/.devcontaier/evcontainer.json
2025-03-07 23:11:29 +08:00

21 lines
627 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"name": "Node.js 22 Development Environment",
"image": "mcr.microsoft.com/devcontainers/javascript-node:22",
"runArgs": [
"--env",
"TZ=Asia/Shanghai"
],
"settings": {
"terminal.integrated.defaultProfile.linux": "/bin/bash"
"terminal.integrated.env.linux": {
"TZ": "Asia/Shanghai"
}
},
"remoteEnv": {
"TZ": "Asia/Shanghai"
},
"extensions": [
"dbaeumer.vscode-eslint"
],
"postCreateCommand": "sudo ln -snf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo Asia/Shanghai | sudo tee /etc/timezone && pnpm install -g @kevisual/envision-cli@latest && npm install"
}