In a file where I export all the classes of my package on lines like the following:
export {default as BoundList, IBoundListOption, TBoundListFilterFn} from './list/BoundList';
errors of the form are generated:
TS1205: Cannot re-export a type when the '--isolatedModules' flag is provided.
How do I export classes now?
This problem occurred in CRA2.1. There was forced to isolatedModules=true. I'm making a component library on CRA2.1