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

https://github.com/jesusgraterol/ts-lib-builder

The ts-lib-builder package is designed to simplify the build process for your TypeScript libraries and APIs. It combines the essential steps of compilation and minification into a single, efficient workflow.
https://github.com/jesusgraterol/ts-lib-builder

builder compiler distibution library package typescript

Last synced: 5 months ago
JSON representation

The ts-lib-builder package is designed to simplify the build process for your TypeScript libraries and APIs. It combines the essential steps of compilation and minification into a single, efficient workflow.

Awesome Lists containing this project

README

          

# TypeScript Library Builder

The `ts-lib-builder` package is designed to simplify the build process for your TypeScript libraries and APIs. It combines the essential steps of compilation and minification into a single, efficient workflow.

## Getting Started

Install the package:
```bash
npm i -D ts-lib-builder
```

Include it in your `build` script:
```json
{
...
"scripts": {
"build": "ts-lib-builder --tsconfig=tsconfig.build.json",
...
}
...
}

```

Generate an optimized production-grade build:
```bash
npm run build
```


## Built With

- TypeScript


## License

[MIT](https://choosealicense.com/licenses/mit/)


## Acknowledgments

- [Terser](https://github.com/terser/terser)