Migration towards TypeScript

This is going to be 1.1.0. Remaining TODOs:
* "npm run tsc" should generate declarations
* Add (restrictive) TSLint configuration
* Add support for TSLint in "npm test"
This commit is contained in:
Roel van Uden
2015-02-06 22:31:02 +01:00
parent d01b204cce
commit 9ff6398aee
38 changed files with 1014 additions and 909 deletions

6
src/cli.ts Normal file
View File

@@ -0,0 +1,6 @@
'use strict';
import batch = require('./batch');
batch(process.argv, err => {
if (err) console.error(err);
});