File tree Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ gulp.task('clean', function (cb) {
1313} ) ;
1414
1515gulp . task ( 'typescript' , function ( ) {
16- tsProject . src ( './src' ) . pipe ( gulp . dest ( './dist' ) ) ;
16+ tsProject . src ( './src' , { logLevel : 0 } ) . pipe ( gulp . dest ( './dist' ) ) ;
1717} ) ;
1818
1919gulp . task ( 'scripts' , [ 'typescript' ] , function ( ) {
Original file line number Diff line number Diff line change 11{
22 "compilerOptions" : {
33 "declaration" : true ,
4- "module" : " amd" ,
5- "out" : " ../../dist/exceptionless.js" ,
4+ "module" : " commonjs" ,
65 "removeComments" : true ,
76 "sourceMap" : true ,
87 "target" : " es5"
4645 " EventBuilder.ts" ,
4746 " ExceptionlessClient.ts" ,
4847 " Utils.ts"
49- ]
48+ ],
49+ "bundles" : {
50+ "exceptionless.es5" : {
51+ "source" : " ExceptionlessClient.ts" ,
52+ "options" : {
53+ "target" : " es5"
54+ }
55+ },
56+ "exceptionless.es6" : {
57+ "source" : " ExceptionlessClient.ts" ,
58+ "options" : {
59+ "target" : " es6"
60+ }
61+ }
62+ }
5063}
You can’t perform that action at this time.
0 commit comments