OverHash
OverHash
Another case that should be handled: ``` . ├── hooks │ ├── useBindingMotor.ts │ └── useMotor.ts ├── hooks.ts ``` This is problematic because imports to `useMotor.ts` will use the `WaitForChild`...
By top-level state are you referring to not checking recursively? That would make more sense as checking recursively can be quite costly. Part of this issue is optimization, but it...
This looks a lot easier to read, doesn't require referring to documentation/IntelliSense to understand the order of parameters. Would the `.With*` calls be chainable? (i.e., could you do `.WithMiddleware([...]).WithTypeChecking([...])`? How...
Sounds good to me!
Another good example of this issue is [`jsdotlua`](https://github.com/jsdotlua) packages. The roblox-ts npm registry currently has to fork, maintain, and upload up to around 40 packages (by my guess) if we...
I don't think there is any indication by that repo owner that they intend it to be downloadable by Aftman. Additionally, the last commit on that repo is further ago...
Will test it out today!
@kevinpollet can confirm that Traefik now refers to the correct socket path. Doesn't fix my issue, unfortunately (for some reason the file is not recognized), but this is an improvement...
Hey @emilevauge I appreciate you sense checking me. I tried using the forums for my issue, but it seems there's not much activity that goes on there. Let me know...
What is your `tsconfig.json`? Try replace your `Roact` import with `React` from `@rbxts/react`: ```ts import React, { StrictMode } from "@rbxts/react"; ```