JSPM

  • Created
  • Published
  • Downloads 293564
  • Score
    100M100P100Q172741F
  • License MIT

Compile TypeScript

Package Exports

  • gulp-typescript

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-typescript) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

gulp-typescript Build Status

Compile TypeScript

Issues with the output should be reported on the TypeScript issue tracker.

Install

$ npm install --save-dev gulp-typescript

Usage

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

gulp.task('default', function () {
    return gulp.src('app.ts')
        .pipe(typescript())
        .pipe(gulp.dest('dist'));
});

License

MIT © Sindre Sorhus