VS Code Settings for web development
{
"window.zoomLevel": 3,
"window.menuBarVisibility": "toggle",
"window.titleBarStyle": "custom",
"terminal.integrated.inheritEnv": true,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"files.autoSave": "afterDelay",
// editor
"editor.fontLigatures": true,
"editor.fontSize": 18,
"editor.mouseWheelZoom": false,
"editor.codeActionsOnSave": {
"source.fixAll.ts": "always",
"source.sortImports": "always"
},
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.expand": true,
"workbench.iconTheme": "material-icon-theme",
"workbench.sideBar.location": "left",
"workbench.colorTheme": "One Dark Pro",
"workbench.activityBar.location": "top",
"extensions.ignoreRecommendations": true,
"extensions.autoCheckUpdates": true
}