TypeScript/README.md
2015-06-03 10:56:31 +08:00

1.4 KiB

TypeScript

TypeScript is a superset of JavaScript that compiles to clean JavaScript output. http://www.typescriptlang.org

Beyond Handbook && Latest features

TypeScript Handbook

TypeScript Language Specification

Others

I'd love for you to contribute to the translation:)

Using Gulp with TypeScript

Install gulp and gulp-typescript. See package.json.

$ npm install --global gulp
$ npm install --save-dev gulp gulp-typescript

Config gulp. See gulpfile.js.

gulp.task('typescript', function() {
  var tsResult = gulp.src('ts/*.ts')
    .pipe(ts({
      target: 'ES5',
      declarationFiles: false,
      noExternalResolve: true
    }));

  tsResult.dts.pipe(gulp.dest('dist/tsdefinitions'));

  return tsResult.js.pipe(gulp.dest('dist/typescript'));
});