Joe Pea
Joe Pea
Welp! ^ "this weekend" was a bad estimate, but I ended up starting with https://github.com/felixmariotto/three-mesh-ui/pull/31 which helped me get more familiar with stuff.
Related, once we implement - https://github.com/lume/element/issues/1 then the problem is solved in that case because adopted style sheets behave similar to styles appended to the end of ShadowRoot.
Possibly related due to possible incorrect stash handling with presence of git submodules: - #1346
Duplicate: - #929
> what about expr/**!*/ as sugar for expr! I like this. In cases like this where comments do not specifically serve a documentation-for-humans purpose, but a documentation-for-ts-compiler purpose, I believe...
Based on #48650: ```js foo(nullableThing/*:!*/) ``` optional trailing when its the last thing on a line: ```js const foo: NonNullableThing = nullableThing //! // The same with semi: const foo:...
As a workaround, you can use the [`esm`](https://www.npmjs.com/package/esm) package for the time being. Just install it, import it, then any file you import after that can be an ES Module....
related: - https://github.com/microsoft/TypeScript/issues/56583
Aha! It isn't that Plastic has extra rules for decorators, but it highlights functions in a different color using type information from TypeScript, and it so happens that decorators are...
No, this is explicitly part of the design, otherwise a field decorator could do anything like modify the prototype of a class. That's what legacy decorators proposal allowed, and browser...