An open API service indexing awesome lists of open source software.

https://github.com/jomendez/typed-report

Determine type coverage usage of any type in typescript, among other things
https://github.com/jomendez/typed-report

Last synced: 8 months ago
JSON representation

Determine type coverage usage of any type in typescript, among other things

Awesome Lists containing this project

README

          

# typed-report
Determine type coverage usage of any type in typescript, among other things

Clone the repo and install dependencies

```bash
npm install
```

To test/install it locally you can run, from the root directory in your console:

```bash
npm run build
npm link
```

To get a report of coverage you can run `typed-report coverage `

```bash
typed-report coverage tsconfig.json
```

To exclude spec files from the report
```bash
typed-report coverage -e tsconfig.json
```

Display top 10 most used types
```bash
typed-report coverage -u tsconfig.json
```