TypeScript/.devcontainer/devcontainer.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 строки
671 B
JSON
Исходник Постоянная ссылка Обычный вид История

{
"name": "Node.js",
"build": {
"dockerfile": "Dockerfile",
"args": {
"VARIANT": "18"
}
},
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/bin/bash",
"icon": "terminal-bash"
}
}
},
"extensions": [
2023-08-31 03:04:28 +03:00
"dbaeumer.vscode-eslint",
"dprint.dprint"
]
}
},
"remoteUser": "node"
2023-08-31 03:04:28 +03:00
}