Satyajit Sahoo

Results 434 comments of Satyajit Sahoo

I was looking into it, setting `{ noLib: true, allowNonTsExtensions: true }` does remove the IntelliSense for DOM stuff, but we'd have to copy a lot of stuff from the...

Some advantages of Linaria off the top of my head: - Dynamic props via CSS custom properties for React components - You can share JS variables with your CSS by...

> I think that we can support Adapting based on props by compiling it to style prop. It'll be very limited. For example, you can't use this interpolation inside pseudo-selector...

@SimenB I don't think prettier update will be enough. There seems to be an error in parsing in tests, building etc. Then I'm afraid it may be a breaking change.

> It's only breaking for your own tooling, not consumers of the TS files If this is a new syntax then it'll fail on older versions of TS consuming the...

Thanks for the PR. Can you share few existing apps which have this behavior? It'd be helpful to determine good defaults.

I wonder if it'll be nicer to use declaration merging for this, then a library could automatically add additional options without extra work on user's part. e.g. ```js declare global...

React Navigation doesn't integrate with your push notifications. If you want to integrate `linking` with push notifications, then you need to configure React Navigation to do so https://reactnavigation.org/docs/deep-linking#third-party-integrations

CI didn't run on this PR for some reason, are there no type errors after you change this? The main reason it's `any` is because otherwise it gives type errors...

@aneequeahmad I already explained why using `window.history.length` wouldn't work - try using the forward button a couple of times in your browser and look at `window.history.length`. Pushing to browser history...