Go to file
2015-04-20 21:27:35 +08:00
dist/typescript Add gulp workflow config and sample 2015-04-10 16:05:54 +08:00
doc update: handbook 2015-04-20 21:27:35 +08:00
ts Add gulp workflow config and sample 2015-04-10 16:05:54 +08:00
.gitignore update: handbook 2015-04-14 19:49:55 +08:00
gulpfile.js Add gulp workflow config and sample 2015-04-10 16:05:54 +08:00
LICENSE Initial commit 2015-03-22 19:32:47 +08:00
package.json Add gulp workflow config and sample 2015-04-10 16:05:54 +08:00
README.md update: readme and handbook 2015-04-19 09:47:10 +08:00

TypeScript

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

TypeScript Handbook

TypeScript Language Specification

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'));
});