это 808 снова с другим вопросом.
Я столкнулся с некоторыми проблемами в последнее время.Я изучаю TypeScript сегодня, и я застрял в середине некоторых катастрофических затруднений.Я пытаюсь установить BASH в код VS, но получаю следующую ошибку.
Это ошибка, которую я получаю -
Unable to write into user settings. Please open the user settings to correct errors/warnings in it and try again.
Вот код, который я ввел в "settings.json" .
Следующий код не работает.
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.shell.windows": "C:\Program Files\Git\bin\bash.exe",
вот фрагмент моего файла settings.json
// Place your settings in this file to overwrite default and user settings.
{
"window.zoomLevel": -1,
"workbench.colorTheme": "Dracula Soft",
"workbench.settings.editor": "json",
"workbench.settings.useSplitJSON": true,
"editor.formatOnSave": true
"emmet.triggerExpansionOnTab": true
"files.exclude": "out": false
"search.exclude": "out": true
"typescript.tsdk": "./node_modules/typescript/lib" // we want to use the TS server from our node_modules folder to control its version
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
}