Lint staged plugin for typescript type checking
npm install lint-staged-tsc
npm i -D lint-staged-tsc
`
Or, if you are using Yarn:
`
yarn add -D lint-staged-tsc
`
Usage
Paste lint-staged-tsc into your lint-staged config, i.e. :
`
{
"lint-staged": {
"*/.{ts,tsx}": "lint-staged-tsc"
}
}
``