/re-export-override-demo

demo for es6 re-export and override any of them

Primary LanguageTypeScript

ES6 Re-export override demo

Check the src/re-export folder and unit tests are in re-export.test.tsx.

The solution is from stackoverflow

import { theFunction } from './myOverrides'

export * from 'some-library'
export { theFunction }