typescript-register
typescript-register copied to clipboard
Extension to require TypeScript files from Node
Please read more at https://github.com/Microsoft/TypeScript-wiki/blob/master/Using-the-Compiler-API.md#a-minimal-compiler The object returned by `program.emit()` appears to match the previous api ```{ emitSkipped: false, diagnostics: [], sourceMaps: undefined }``` Fixes #18
\node_modules\typescript-register\index.js:133 var result = checker.emitFiles(); ^ TypeError: checker.emitFiles is not a function
The [npm](https://www.npmjs.com/package/typescript-register) page for this package does not have the deprecation warning in the `README`. Do a quick patch release to update npm's documentation.
I think that latest TS broke `typescript-register`: emitFiles is no longer defined on the checker: ``` var result = checker.emitFiles(); ```
This will close #14. It fixes some bugs with the newest TypeScript compiler. Also note that it now implicitly uses the d.ts files embedded in the TypeScript instead of the...
I wrote https://github.com/blakeembrey/typescript-node before I found your module recently and was wondering if you had plans on support TypeScript 1.5 and `tsconfig.json`?
Layout: ``` ./client/gulpfile.ts ./server/gulpfile.ts # Contains "scripts": {"build": "gulp --cwd client build && gulp --cwd server build"} # so one can run `npm run build` to build both client and...