tsbundle/ts/tsbundle.plugins.ts

25 lines
641 B
TypeScript
Raw Normal View History

2019-05-06 12:00:21 +00:00
// pushrocks scope
import * as smartlog from '@pushrocks/smartlog';
import * as smartlogDestinationLocal from '@pushrocks/smartlog-destination-local';
export {
smartlog,
smartlogDestinationLocal
}
// third party scope
2019-04-30 10:49:10 +00:00
import * as rollup from 'rollup';
2019-04-30 11:12:57 +00:00
import rollupBabel from 'rollup-plugin-babel';
2019-04-30 10:49:10 +00:00
import rollupCommonjs from 'rollup-plugin-commonjs';
2019-04-30 11:12:57 +00:00
import rollupResolve from 'rollup-plugin-node-resolve';
2019-04-30 10:49:10 +00:00
import rollupSourceMaps from 'rollup-plugin-sourcemaps';
import rollupTypescript from 'rollup-plugin-typescript2';
export {
rollup,
2019-04-30 11:12:57 +00:00
rollupBabel,
2019-04-30 10:49:10 +00:00
rollupCommonjs,
2019-04-30 11:12:57 +00:00
rollupResolve,
2019-04-30 10:49:10 +00:00
rollupSourceMaps,
rollupTypescript,
};