TypeScript/.devcontainer/devcontainer.json
Daniel Rosenwasser 9e4c410caa
Switch devcontainer to use Node.js 18. (#55299)
Also moved certain fields to `customizations`.
2023-08-07 15:44:15 -07:00

26 lines
637 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": [
"dbaeumer.vscode-eslint"
]
}
},
"remoteUser": "node"
}