If i have a file like
import { LitElement, html, customElement } from "lit-element";
export * from 'lit-element';
export { LitElement} from 'lit-element';
@customElement("hello-world")
export default class HelloWorld extends LitElement {
render() {
await import('lit-element');
return html`<h1>Hello World</h1>`;
}
}
Browsers support dynamic imports/named imports and exports.
In the example all the imports currently are skipped for rendering.