Brian Frichette

Results 58 comments of Brian Frichette

This is not a bug report, it's a feature request. Using CRA + TS for anything but the most basic project setup is not supported currently. For composite projects in...

@osdiab The monorepo issue occurs with nested linked imports: Say you have monorepo, with modules `a`, `b`, `c` `a` imports `b` and/or `c` works fine. `a` imports `b` imports `c`,...

Agreed, and it should be: `:lt.plugins.tern` ← `$HOME/.tern-config` ← `.tern-project`

I mean it's fair, but why not open a PR to fix this? You need to keep in mind that these "serious issues" are all devDependencies, and have nothing to...

While I don't think it's such a big deal, TypeScript does allow you to forego Babel as it compiles language features. You can even include the helper library [tslib](https://github.com/Microsoft/tslib) separately...

For now I'm just ignoring with: ```ts if (__DEV__) { LogBox.ignoreLogs(['Failed prop type: Invalid prop `externalScrollView`']) } ```

This is exact thing happened to me as soon as I added something to a worker file that is also imported by my main thread. This alone enough enough to...

I can understand the desire to maintain a narrow focus on your goals of seamless, high-quality editor support and speed. However, by ignoring CI, a huge portion of your market...

This thread relates to iOS, but it seems to occur on Android as well. I've been working on a very inefficient `ScrollView` (to be replaced later by something fast), and...