putout plugin adds ability to find and remove unused types
npm install @putout/plugin-remove-unused-types[NPMIMGURL]: https://img.shields.io/npm/v/@putout/plugin-remove-unused-types.svg?style=flat&longCache=true
[NPMURL]: https://npmjs.org/package/@putout/plugin-remove-unused-types "npm"
šPutout plugin adds ability to find and remove unused types.
Moved to @putout/plugin-typescript
```
npm i @putout/plugin-remove-unused-types -D
`json`
{
"rules": {
"remove-unused-types": "on"
}
}
`ts
type n = number;
type s = string;
const x: n = 5;
`
`ts
type n = number;
const x: n = 5;
``
MIT