egg_tools/.devcontainer/devcontainer.json
zhaoyingbo c0df99bfd8
All checks were successful
/ release (push) Successful in 29s
feat(net-tool): 健康检查支持传入message
2024-09-20 10:39:25 +00:00

31 lines
898 B
JSON

{
"name": "egg_tools",
"image": "mcr.microsoft.com/devcontainers/typescript-node:20",
"customizations": {
"vscode": {
"settings": {
"files.autoSave": "afterDelay",
"editor.guides.bracketPairs": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always"
}
},
"extensions": [
"eamodio.gitlens",
"Gruntfuggly.todo-tree",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"YoavBls.pretty-ts-errors",
"ChakrounAnas.turbo-console-log",
"streetsidesoftware.code-spell-checker",
"MS-CEINTL.vscode-language-pack-zh-hans",
"GitHub.copilot-chat",
"GitHub.copilot"
]
}
},
"onCreateCommand": "curl -fsSL https://bun.sh/install | bash"
}