Nicholas Jamieson
Nicholas Jamieson
You should first verify that the import works with a plain vanilla `.ts` file that's compiled using `tsc`. I.e. make sure that this compiles using `tsc`: ```ts import { BdApi...
I'm not going to have time to look into this anytime soon. You can, however, use the logging built into tsify to see if you can figure out why that...
My situation was easy to work around, so this is not something that's blocking me. I can have a look at it later, if you are interested in a PR...
Sorry, this slipped off my radar. I'll try to have a look at it later this week.
That sounds reasonable, to me, but, IMO, it needs a better name. I think, `selector` too general and doesn't really convey what it does. I appreciate that naming things is...
I'm fine with `percolate`.
Hmm, the intention is for those to be consumed by the bundler, rather than directly.
Bundler configurations are the worst. There should be a `package.json` in the `operators` directory, though, so maybe - just maybe - using that import location might work? ```ts import {...
I just had a look at the `dist` and there isn't a `package.json` in the `esm2015/operators` directory. Yeah, if you create one it might solve the problem. You should be...
I've had the chance to play with it. If the following `package.json` is added to `esm2015/operators` it works fine, for me: ```json { "name": "rxjs-etc/operators", "main": "./index.js", "typings": "../../operators/index.d.ts", "sideEffects":...