Isaac Levy

Results 45 comments of Isaac Levy
trafficstars

ping... I also posted in chat and got no response....

if you're willing to do it, that would be easier for me, but I will get to it eventually.

Do you have a benchmark framework to use or are you asking for simple jmh?

From [ts handbook](https://www.typescriptlang.org/docs/handbook/interfaces.html) > While string index signatures are a powerful way to describe the “dictionary” pattern, they also enforce that all properties match their return type. This is because...

So this is more broken than I thought. Basically the index type in typescript enforces on all existing properties, while in json additionalProperties spec only applies to things not listed...

additionalProperties probably needs to always translate to ```ts [k: string]: unknown; ```

Unfortunately it's also broken for required properties that simply have a different type. This is invalid because the index type must contain the union of all listed types. So really...

@terox I had two issues in my package. 1) extract-loader does NOT handle script src properly. Solution: use absolute links to make html-loader ignore them, or turn them off in...