I don't need all of the components provided in the 'core' library and was hoping to treeshake/selectively choose which components to import. I've tried a few variations and experiments based on other successes but can't seem to get this one to work.
Current:
import { Menu } from '@blueprintjs/core';
Ideal:
import Menu from '@blueprintjs/core/Menu';