After installing the latest version of VSCode on my Windows system, I proceeded to add language support for TypeScript and configure my editor settings by adjusting the font size, disabling the minimap, enabling autosave on focus change, and more. Additionally, I installed some useful extensions.
Here is a snippet of my current editor configuration:
{
"editor.fontSize": 12,
"editor.minimap.enabled": false,
"files.autoSave": "onFocusChange",
"editor.find.autoFindInSelection": true,
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
},
"editor.autoClosingBrackets": false,
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"html.format.indentInnerHtml": true,
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"workbench.colorTheme": "One Dark Pro"
}
These are the extensions I have installed: Angular Language Service 0.1.7, Angular V5 Snippets 2.11.2, Auto Import 1.5.3, Debugger for Chrome 4.0.0, TSLint 1.0.24, and a few icon/theme related extensions.
However, I am facing an issue where I am unable to see the list of modules when trying to import them in the app.module.ts file. Can someone provide any suggestions on how to resolve this?
Thank you