Results 6 comments of Will Wise

Thanks for working on this @kris-ellery. Keen as for the patch 🥳

I'm getting the same issue as well. Here's a reproduction using Expo 40: https://github.com/willtpwise/react-native-svg-transformer__not-working I've also noticed on Expo 39

The types in DefinitelyTyped are not complete... It's missing a lot of definitions, for example, the adaptors.

Same here Using the default next.js configuration from a brand new next.js app. I've also tried ES2022 and the same issue appears ``` { "compilerOptions": { "target": "es2017", "lib": ["dom",...

My solution is to run the stacks on different ports. Like so: ``` npm i -D concurrently ``` ``` npx concurrently \ "sam local start-api -t ./cdk.out/foo.template.json -p 3000" \...

We're facing a similar issue where invalid markdown causes a CPU blowout. We essentially need a way to handle markdown which contains invalid html/markdown. Perhaps there's a way to strip...