Is there a feature in npm
or yarn
that automatically installs @types/*
for packages without their own types, in Typescript projects?
For example:
//package.json
{
// ...
"installTypes": true
}
// installing package
yarn add ABC <- will install ABC + @types/ABC