Katja Lutz
Katja Lutz
In solidjs I solved it like this: ```tsx const Modal: FlowComponent = (props) => { const [isVisible, setVisibility] = createSignal(props.open); createEffect(() => { if (props.open) { setVisibility(true); } else {...
What if we include a hint and maybe some quick vanilla js example "Modal with close animation" just in the Daisyui docs. That way users would see that they have...
@jonaskello > I ran the repro above and it seems this issue is really stuck on (3) above, not (1) or (2)? All of those options have one question in...
@jonaskello Thanks for the detailled answer :) > From what I understand it does bundling? Why would you want to involve tsconfig-paths when bundling? I use ts-node / tsconfig-paths during...
> If you use baseUrl: "." then tsconfig-paths will not find something installed in node_modules that is required by name, for example require("foo"). When tsconfig-paths does not find a path...
@cspotcode Did you already start with the exports/esm stuff in some hidden place? How do we coordinate us? Who makes what? - do you even need my help? 😂
@jonaskello I gonna try to create that pr now ;)
@jonaskello Btw. in the original commit message for removeExtension you already added a hint "*but why?*": https://github.com/dividab/tsconfig-paths/pull/27/commits/847d31475665166aa6f30dc01e759435f4fb13a4, you don't remember why you added this commit in the first place? :D...
@jonaskello > Regarding package.json, there is a case where you can provide other fields to look at instead of (or in addition to) main when using the API. This function...
@johan-gorter Thanks for your fast feedback! I am not a TS user ;). I think it doesnt currently accept objects because of this: https://github.com/AFASSoftware/maquette/blob/master/src/maquette.ts#L478