https://github.com/escemi-tech/ts-dev-tools
Opinionated and advisable packages to configure tools to develop a Typescript project
https://github.com/escemi-tech/ts-dev-tools
commit-lint developer-tools eslint hooks husky jest prettier type typescript
Last synced: about 1 month ago
JSON representation
Opinionated and advisable packages to configure tools to develop a Typescript project
- Host: GitHub
- URL: https://github.com/escemi-tech/ts-dev-tools
- Owner: escemi-tech
- License: mit
- Created: 2020-10-23T15:46:31.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2026-06-01T05:05:11.000Z (about 2 months ago)
- Last Synced: 2026-06-01T07:08:58.960Z (about 2 months ago)
- Topics: commit-lint, developer-tools, eslint, hooks, husky, jest, prettier, type, typescript
- Language: TypeScript
- Homepage: https://escemi-tech.github.io/ts-dev-tools/
- Size: 11.9 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE-OF-CONDUCT.md
Awesome Lists containing this project
README
[](https://github.com/escemi-tech/ts-dev-tools)
[](https://www.npmjs.com/search?q=%40ts-dev-tools)
[](https://github.com/escemi-tech/ts-dev-tools/actions/workflows/main-ci.yml)
[](https://codecov.io/gh/escemi-tech/ts-dev-tools)
[](LICENSE)
[](CONTRIBUTING)
[](https://github.com/sponsors/neilime)
[](https://github.com/escemi-tech/ts-dev-tools)
---
# Welcome to ts-dev-tools 🛠️
## Opinionated and advisable packages to configure tools to develop a Typescript project
---
## Why **ts-dev-tools** ?
### _1_. Aims to provide a first-class developper experience
Install **ts-dev-tools** and your project is dev ready, no more installation or setup, it just works
### _2_. A fine tuned collection of tools and configuration ready for a realworld project
Within the dozen of existing packages, **ts-dev-tools** uses a short list of consistent libraries and their recommanded configuration.
**ts-dev-tools** is used by various real world projects to be run in production, so its toolset is effective and meets industry standards.
### _3_. Stable and secure
For every changes and dependency update, **ts-dev-tools** is:
- [Unit & E2E tested](https://github.com/escemi-tech/ts-dev-tools/actions?query=workflow%3A%22Continuous+Integration%22): [coverage report](https://codecov.io/gh/escemi-tech/ts-dev-tools)
- Audited for known vulnerabilities with [CodeQL](https://github.com/escemi-tech/ts-dev-tools/security/code-scanning)
### _3_. One package to rule them all, one dependency to keep up to date
Dependencies are updated all weeks in order to keep dev tools up to date agains security issues and to give access to the latest available feature.
Using **ts-dev-tools** you should just have to update it and you'll have all the dev dependencies used by **ts-dev-tools**, up to date !
## Usage
### _1_. Choose the plugin that fits with you need
| Name | Description |
| ------------------------------------------------- | --------------------------------------------------------------------------- |
| [@ts-dev-tools/core](./packages/core/README.md) | Common Typescript tools (Eslint and prettier, lint-staged and pretty-quick) |
| [@ts-dev-tools/react](./packages/react/README.md) | Dev tools for a for [ReactJS](https://reactjs.org/) project |
### _2_. Install
_Example with plugin `@ts-dev-tools/core`, replace `@ts-dev-tools/core` by the plugin you want to use_
```sh
npm install --save-dev @ts-dev-tools/core
```
Or
```sh
yarn add --dev @ts-dev-tools/core
```
Or
```sh
pnpm add -D @ts-dev-tools/core
```
### _3_. Enable ts-dev-tools
```sh
npx ts-dev-tools install
```
Or
```sh
yarn ts-dev-tools install
```
Or
```sh
pnpm ts-dev-tools install
```
⚠️ If your package is using yarn, is not private and you're publishing it on a registry like npmjs.com, you need to disable postinstall script using [pinst](https://github.com/typicode/pinst). Otherwise, postinstall will run when someone installs your package and result in an error.
---
## Author
👤 **Escemi **
- Website: https://www.escemi.com
- LinkedIn: [@escemi](https://www.linkedin.com/company/escemi)
## 🤝 Contributing
Contributions, issues and feature requests are welcome!
Feel free to check [issues page](https://github.com/escemi-tech/ts-dev-tools/issues). You can also take a look at the [contributing guide](CONTRIBUTING) and [Contributor Code of Conduct](CODE-OF-CONDUCT.md).
### Developer setup
```sh
npm install
```
### Checks
```sh
npm run lint
npm run test
npm run build
```
Or run everything in one command:
```sh
npm run ci
```
### Clean cache
For some reason, if you need to clean cache, you can run the following commands:
```sh
# Test cache
rm -rf node_modules/.cache/ts-dev-tools
# NX cache
npx nx reset
```
## Show your support
Give a ⭐️ if this project helped you!
## 📝 License
This project is [MIT](LICENSE) licensed.