tscoverage/ts/index.ts

14 lines
415 B
TypeScript
Raw Normal View History

2016-06-10 04:14:12 +00:00
/* ================================================== *
2016-10-02 18:35:13 +00:00
**** NPMTS ****
Fabulous TypeScript development
2016-06-10 04:14:12 +00:00
* ================================================== */
2016-10-02 18:35:13 +00:00
import * as early from 'early';
early.start('NPMTS');
import * as plugins from './npmts.plugins';
import * as cli from './npmts.cli';
early.stop().then(() => {
let loaded = plugins; // to make sure plugins get actually loaded
cli.run();
});