2.0.1 ā€¢ Published 2 years ago

@putout/plugin-remove-unused-types v2.0.1

Weekly downloads
2,091
License
MIT
Repository
github
Last release
2 years ago

@putout/plugin-remove-unused-types NPM version

šŸŠPutout plugin adds ability to find and remove unused types. Moved to @putout/plugin-typescript

Install

npm i @putout/plugin-remove-unused-types -D

Rule

{
    "rules": {
        "remove-unused-types": "on"
    }
}

āŒ Incorrect code example

type n = number;
type s = string;

const x: n = 5;

āœ… Correct code Example

type n = number;

const x: n = 5;

License

MIT