jr-typescript

0.2.0 • Public • Published

JR-TYPESCRIPT

A jr job for typescript.

Example

var jrTypeScript = require('jr-typescript');

jrTypeScript({
  files: [ 'main.ts' ],
  options: {
    out: 'program.js'
  }
}, function (err) {
  if (err) {
    console.log(err);
  }
});

Given main.ts:

/// <reference path="greeter.ts" />

var greeter = new Greeter("world");
greeter.greet();

and greeter.ts:

class Greeter {
    greeting: string;
    constructor(message: string) {
        this.greeting = message;
    }
    greet() {
        return "Hello, " + this.greeting;
    }
}

this writes program.js:

var Greeter = (function () {
    function Greeter(message) {
        this.greeting = message;
    }
    Greeter.prototype.greet = function () {
        return "Hello, " + this.greeting;
    };
    return Greeter;
})();
var greeter = new Greeter("world");
greeter.greet();

Details

Jr-typescript is a function that compiles TypeScript files into JavaScript files. Although designed to be used with jr, it does not depend on jr and can be used by itself.

Jr-typescript is a thin wrapper around the command-line TypeScript compiler 'tsc'. The 'files' array indicates the set of TypeScript files to compile. The 'options' object controls other aspects of the compilation, such as the output file; see 'tsc --help' for details. The options are specified using their long form without the leading hyphens, so "--out" becomes "out".

Readme

Keywords

Package Sidebar

Install

npm i jr-typescript

Weekly Downloads

12

Version

0.2.0

License

none

Last publish

Collaborators

  • jraymakers