tsmake
Version:
tsmake is a typescript make. Created for autocompile Typescript code into JS.
49 lines (46 loc) • 720 B
Markdown
TSMake - build system for TypeScript.
======================================
> License: GPLv2
###Installation :
```bash
npm i tsmake -g
```
### Usage :
Compile all targets :
```bash
tsmake all
```
####Compile special target (for example 'test') :
```bash
tsmake test
```
####Remove all compiled files (cleanup) :
```bash
tsmake clean
#or
tsmake cleanup
#or
tsmake cls
```
###For compile your first project you should create **TSMakefile.json**
####Example :
```json
{
"target_name": {
"targets": [
"file.ts",
"file2.ts"
],
"out": "common_file.js"
}
}
```
####Build :
```bash
tsmake target_name
#or
tsmake all
```
## Author's contacts :
E-Mail : **alexandrleutin@gmail.com**
or issues on github.