Here are some of Visual Studio Code extensions that are amazingly useful for development.
| Extension | Stats |
|---|---|
| Chrome Debugger | |
| Darcula Theme | |
| Editor Config | |
| IntelliJ IDEA Keybindings | |
| Material Icon Theme | |
| Prettier | |
| Reveal | |
| TSLint |
Here are the great extensions that are helpful with Angular development.
| Extension | Stats |
|---|---|
| Angular Language Service | |
| Angular Snippets | |
| Angular Console |
Here are some of my recommended settings for VS Code.
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": true,
"editor.fontSize": 14,
"editor.fontFamily": "'Menlo', 'monospace'",
"editor.fontLigatures": true,
"editor.minimap.enabled": true,
"editor.tabCompletion": "on",
"editor.tabSize": 2,"files.defaultLanguage": "typescript",
"files.trimTrailingWhitespace": true,"prettier.singleQuote": true,
"prettier.printWidth": 100,Thanks John Papa and Todd Motto for the inspiration.