tsmake
v1.0.9
Published
tsmake is a typescript make. Created for autocompile Typescript code into JS.
Readme
TSMake - build system for TypeScript.
License: GPLv2
###Installation :
npm i tsmake -gUsage :
Compile all targets :
tsmake all####Compile special target (for example 'test') :
tsmake test####Remove all compiled files (cleanup) :
tsmake clean
#or
tsmake cleanup
#or
tsmake cls###For compile your first project you should create TSMakefile.json ####Example :
{
"target_name": {
"targets": [
"file.ts",
"file2.ts"
],
"out": "common_file.js"
}
}####Build :
tsmake target_name
#or
tsmake allAuthor's contacts :
E-Mail : [email protected] or issues on github.
