Skip to content

Commit

Permalink
fix: add missing default and __esModule exports
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Aug 17, 2022
1 parent d109b5c commit e079741
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,11 @@ export const setupDevtoolsPlugin = () => {}
export const isPerformanceSupported = () => false

export const now = () => Date.now()

export const __esModule = true

export default {
setupDevtoolsPlugin,
isPerformanceSupported,
now
}

0 comments on commit e079741

Please sign in to comment.