mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-04 12:32:08 -06:00
The previous `"terminal.integrated.shell.linux"` configuration is deprecated. This is the new way of setting this configuration
23 lines
485 B
JSON
23 lines
485 B
JSON
{
|
|
"name": "Node.js",
|
|
"build": {
|
|
"dockerfile": "Dockerfile",
|
|
"args": {
|
|
"VARIANT": "14"
|
|
}
|
|
},
|
|
"settings": {
|
|
"terminal.integrated.defaultProfile.linux": "bash",
|
|
"terminal.integrated.profiles.linux": {
|
|
"bash": {
|
|
"path": "/bin/bash",
|
|
"icon": "terminal-bash",
|
|
},
|
|
},
|
|
},
|
|
"extensions": [
|
|
"dbaeumer.vscode-eslint"
|
|
],
|
|
"remoteUser": "node"
|
|
}
|