Shukant Pal

Results 102 comments of Shukant Pal

@bpkennedy If you are using import/export, you now simply ```ts import { RectTileLayer } from 'pixi-tilemap' ``` directly.

@4ian The whole point of importing from `@pixi/` modules is so that we don't have a dependency on the `pixi.js` bundle. I think a better solution would be to check...

@spassvogel Can you give us a reproduction? Are there any errors being thrown? Also, be sure to check if pixi-tilemap is not getting its own copy of `@pixi/core` (or any...

@spassvogel You can see if pixi-tilemap gets its own copy by: opening node_modules/pixi-tilemap/node_modules and see if there is a @pixi package there.

Hey @Silver-Streak @blurymind did you upgrade to @pixi/tilemap 3? It should have better typings + cleaner API.

Ah, yes. webdoc doesn't recognize `type` definitions from the code. If you don't give it the `@typedef` tag, it fails to resolve the documentation to any type. I'll be adding...

Or should `type BasisBinding` become a `typedef` by inference?

@bigtimebuddy The parser still parses the whole document even if `@ignore` is specified. `@ignore` marked documents are pruned after the fact: https://github.com/webdoc-labs/webdoc/blob/921a6402ff3779c5755d8c48e147650bbbd66dac/packages/webdoc-parser/src/transformer/mod-prune.js#L7 I agree this is a weakness of the...