Joe Pea
Joe Pea
@kitsonk Your first suggestion, ```ts declare module 'three' { interface Object3D { pivot: Vector3 } interface Object3DConstructor { new (): Object3D; } const Object3D: Object3DConstructor; } ``` results in all...
@DanielRosenwasser Seems to be a problem with the `three/Object3D` definition. Here's a reproduction: https://repl.it/@trusktr/QuarterlyWellinformedArchitect (press the "run" button).
I updated the previous comment's broken link (in case you were reading email).
Browser translation is pretty good I think, especially after many years of improvements. Does having pre-translated docs help with SEO? For example, do search engines show users in a nother...
If it is published with Docsify, not a separate package, users will need to use the Docsify version. It will be easier to manage it that way instead of a...
That may be true unless at some point we change the plugin system in a breaking way. hmmm
> Are you looking to use it yourself? Yeah! I started a new project to compile TS to Wasm (not revealed yet, but DM me and I can share it)....
Interesting, what editor are you using? In VS Code, I was getting no intellisense (mainly because of the non-idiomatic output format of microbundle, and I've had these issues with other...
We can add `export * as w from ...` to explicitly define the importable `w` variable. True, maybe tree shaking isn't a big deal in this case. This is the...