Visual studio code built in JavaScript IntelliSense, debugging, formatting not working.
I’ve tried many solutions but didn’t work. I also reinstalled VS Code but it didn’t fix the issue. Guide me how to fix this problem.
setting.json file code
{
"workbench.startupEditor": "newUntitledFile",
"editor.wordWrap": "on",
"php.executablePath": "C:/xampp/php/php.exe",
"php.validate.executablePath": "C:/xampp/php/php.exe",
"workbench.editor.untitled.hint": "hidden",
"security.workspace.trust.untrustedFiles": "open",
"editor.linkedEditing": true,
"liveServer.settings.donotShowInfoMsg": true,
"workbench.iconTheme": "material-icon-theme",
"editor.minimap.enabled": false,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"window.restoreFullscreen": true,
"files.exclude": {
"**/.git": false
},
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"vue-html": "html",
"vue": "html",
"javascript": "javascriptreact"
},
"zenMode.centerLayout": false,
"liveSassCompile.settings.generateMap": false,
"liveSassCompile.settings.formats": [
{
"format": "nested",
"extensionName": ".css",
"savePath": "/css"
}
],
"json.maxItemsComputed": 25000,
"liveServer.settings.donotVerifyTags": true,
"workbench.colorTheme": "Winter is Coming (Dark Blue - No Italics)",
"bracket-pair-colorizer-2.depreciation-notice": false,
"emmet.showSuggestionsAsSnippets": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue"
}