Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/broucz/template-ts-minify


https://github.com/broucz/template-ts-minify

Last synced: 22 days ago
JSON representation

Awesome Lists containing this project

README

        

# template-ts-minify

Minimal boilerplate that compiles Typescript into a minifyed CommonJS file.

Example:

Input:

```ts
(function() {
let my_var = 'Hello';
alert(my_var);
})();
```

Output:

```ts
(function(){alert("Hello")})();
```

## Setup

```
git clone [email protected]:broucz/template-ts-minify.git
cd template-ts-minify
npm install
```

## Build

```
npm run build
```