You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@daniel-nagy great work on this. I really want to use it in combination with Lit Element but I'm struggling to figure out how to integrate it into my existing set of components. I'm using a very simple rollup config with only typescript and resolve plugins. But I'm getting other errors related to the @babel/plugin-proposal-class-properties plugin.
I don't want to use babel for my modern browser build if possible, but I'm unclear on how to get it all wired up.
Any thoughts or clarity you could add to the README would be helpful. Thanks!
The text was updated successfully, but these errors were encountered:
Rollup may be tree shaking the exports because it doesn't know that they contain side effects. Can you confirm this by looking at your rollup output and seeing if it contains any logic from this file.
I'm using a very simple rollup config with only typescript and resolve plugins. But I'm getting other errors related to the @babel/plugin-proposal-class-properties plugin.
This module wouldn't have anything to do with that, it sounds like you have some issues with your rollup config.
Yes. My import is the same. All of the VampireRoot file exists in the compiled output.
@daniel-nagy would it be possible for you to share your compiler config? The stackblitz example in the readme seems to obscure how the code is actually being compiled.
Edit: And I'm not super familiar with Stackblitz's interface, it's possible there's a config view somewhere that I don't know how to access.
@daniel-nagy great work on this. I really want to use it in combination with Lit Element but I'm struggling to figure out how to integrate it into my existing set of components. I'm using a very simple rollup config with only
typescript
andresolve
plugins. But I'm getting other errors related to the@babel/plugin-proposal-class-properties
plugin.I don't want to use babel for my modern browser build if possible, but I'm unclear on how to get it all wired up.
Any thoughts or clarity you could add to the README would be helpful. Thanks!
The text was updated successfully, but these errors were encountered: