0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-22 19:44:26 +01:00
hono/.devcontainer/devcontainer.json

29 lines
703 B
JSON
Raw Normal View History

{
"build": {
"dockerfile": "Dockerfile"
},
"containerEnv": {
"HOME": "/home/node"
},
"customizations": {
"vscode": {
"settings": {
"deno.enable": false,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
}
},
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode"
]
}
}
}