ts-emitter
Emitting typescript as back to typescript.
Features
- Keep original source as much as possible and only update whats changed.
Usage
Installation
Install as npm package:
$ npm install ts-emitter
Tests
The typescript compiler test suite is used to test the code generator. To create and run the test harness execute
$ npm run update-harness
$ npm run harness
API
import { fromPath, toSource } from 'ts-emitter';
const ast = fromPath('path/to/source-file.ts'));
// Do something with the AST
const source = toSource(ast);