This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

gulp-tsb

4.0.6 • Public • Published

gulp-tsb

Build Status

Information

A gulp plugin for very fast TypeScript compilation. This plugin works by

  • keeping a compiler alive to improve speed (at the cost of memory)
  • always recompiling the smallest set of files possible

Usage

	var tsb = require('gulp-tsb');

	// create and keep compiler
	var compilation = tsb.create({
		target: 'es5',
		module: 'commonjs',
		declaration: false
	});

	gulp.task('build', function() {
		return gulp.src('src/**/*.ts')
			.pipe(compilation()) // <- new compilation
			.pipe(gulp.dest(''));
	});

Options

The options are the same as the standard TypeScript compiler option.

/gulp-tsb/

    Package Sidebar

    Install

    npm i gulp-tsb

    Weekly Downloads

    466

    Version

    4.0.6

    License

    MIT

    Unpacked Size

    104 kB

    Total Files

    28

    Last publish

    Collaborators

    • alexandrudima
    • dbaeumer
    • jrieken