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
- Host: GitHub
- URL: https://github.com/jomendez/typed-report
- Owner: jomendez
- License: mit
- Created: 2022-08-30T16:37:00.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-31T21:29:18.000Z (about 3 years ago)
- Last Synced: 2025-01-02T05:17:38.629Z (9 months ago)
- Language: TypeScript
- Size: 70.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# typed-report
Determine type coverage usage of any type in typescript, among other thingsClone 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
```