Skip to content

Commit

Permalink
Merge pull request #1204 from panascais-forks/fix-typescript-export
Browse files Browse the repository at this point in the history
Fix exports for node
  • Loading branch information
jamuhl committed Feb 14, 2019
2 parents 69f7402 + 014c009 commit 30cb2a4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion index.js
@@ -1 +1,5 @@
module.exports = require('./dist/commonjs/index.js').default;
/* eslint no-var: 0 */
var main = require('./dist/commonjs/index.js').default;

module.exports = main;
module.exports.default = main;

0 comments on commit 30cb2a4

Please sign in to comment.