Open
Description
Hi,
I just noticed that (control) imports cannot use tree shaking atm.
This means you need to write a very long "import header" like:
import MessageBox from "sap/m/MessageBox";
import Button from "sap/m/Button";
import MessageToast from "sap/m/MessageToast";
import Select from "sap/m/Select";
and cannot simplify write some short and concise code like:
import {MessageBox, Button, MessageToast, Select} from "sap/m";
Are there any plans to support this in the future?