it's 808 back again with another question.
I am running into some problems as of late. I am learning TypeScript today and I am stuck in the middle of some disastrous predicament. I am trying to install BASH into VS code but I am receiving the following error.
This is the error I receive -
Unable to write into user settings. Please open the user settings to correct errors/warnings in it and try again.
Here's the code I typed into "settings.json".
The following code does not work.
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.shell.windows": "C:\Program Files\Git\bin\bash.exe",
here's a snippet of my settings.json file
// 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",
}