Alec Gibson

Results 85 comments of Alec Gibson

Any movement on this? We're running into exactly this issue. Edit: no publish in 3 years. Guess not.

(Even if this gets marked as wontfix, I thought I'd at least document something somewhere in case anyone else runs into this)

Have just bumped to v6 and had to add `@types/react-text-mask` on top of existing dependencies.

Sorry about the delay. Here you are: ```json { "include": [ "src/**/*", "src/test/**/*" ], "compilerOptions": { "module": "commonjs", "esModuleInterop": true, "target": "es6", "noImplicitAny": true, "noUnusedLocals": true, "experimentalDecorators": true, "emitDecoratorMetadata": true,...

I think a part of the issue here is that the `comment-end` spans are nested within one another. If I manually rearrange the JSON so that they're serial (not nested),...

One place this does seem to fall down is that you lose the casting when extracting an interface. I can't quite figure out how to do that (possibly something to...

Okay I've updated this, and it now correctly casts! Also updated to include @noe132 's update for checking for reverse mapping

We don't have `@types/resize-observer-browser` installed, but also get this issue.

The issue is because the latest version of TypeScript ships with an official type definition, which this library conflicts with.

We've quick-fixed it by just using: ```ts const ResizeObserverPolyfill = require('resize-observer-polyfill'); const observer: ResizeObserver = new ResizeObserverPolyfill(); ``` But that obviously only works if you have a direct dependency on...