Track missing type coverage in TypeScript projects to ensure type safety
npm install codecheck-type-coverage

Track missing type coverage in TypeScript projects to ensure type safety
``sh`
npm add --save-dev @codechecks/type-coverage-watcher
or
`sh`
yarn add --dev @codechecks/type-coverage-watcher
Add to your codechecks.js file:
`typescript
import { typeCoverageWatcher } from "@codechecks/type-coverage-watcher";
export async function main() {
await typeCoverageWatcher();
// ...
}
`
#### options
`typescript`
interface Options {
tsconfigPath?: string;
}
##### tsconfigPath
optional stringtsconfig.json`
\
Default:
\
Path to typescript project configuration
All contributions are welcomed. Read more in CONTRIBUTING.md
MIT @ codechecks.io