How to make VSCode automatically import your components

Very useful and saves a lot of time in a long run. Include typescript into your package.json:

“devDependencies”: {

“typescript”: “^3.4.5”

}

There is no need to install anything.

Then whatever component you have, if you start typing it VSCode will suggest it and then include an import. Check this out in the example below:

Leave a comment