Nicolas
Nicolas
Hi, is there any update on that issue? I'm running into the same thing, using @nivo/bar 0.79.1
For information, another similar bug was found with interfaces : Example: ```ts // firstFile.ts export interface IProps { ... } ``` ```ts // anotherFile.ts import IProps form "./firstFile" export const...
First found: It looks like it's working when I turn esModuleInterop to false (and remove all esModuleInterop type imports)
Second found: It's also working with esModuleInterop, but not if I mix 2 flavors. And by the way the esModuleInterop output something strange: `import { default } from "react"`
Let me quickly create something (current case in on a private repo)
https://github.com/collibra/api-extractor-example But I was not able to reproduce the failure, maybe a combination on small things on my project, I clean up some stuffs and continue investigations. You can still...
Hi, I am facing exactly the same PureComponent issue. I would like to do that: ```javascript ``` But the Routes component never gets updated by url change. Is there a...