Rebecca Stevens

Results 225 comments of Rebecca Stevens

In order to keep compatibility with older versions of ts and projects not using `"moduleResolution": "Node12"`, I might just make the presets also available via `import { presets } from...

We'd need to add lazy evaluation in order to support something like: > ```ts > const merged = deepmergeDefined(x,y).options({ > mergeArray: false > }) > ``` But that syntax is...

Does `path.normalize` not work?

Not sure why some tests are now failing, will investigate at a later date (hopefully tomorrow). @novemberborn Do you know why some of the linting is playing up? I was...

Hey, sorry I've been away for a bit. > What is the end goal with this? A few things: - First, fixing up the CJS vs ESM entry points (explained...

With resolution mode assertions that are available in `typescript@next`, the duplication may be able to be removed. ```ts // index.d.mts export type { Foo, Bar } from "./index.js" assert {...

@perrin4869 `.d.mts` and `.d.cts` cannot import from one another without using resolution mode assertions which are unstable in TS 4.7. Note: `.d.ts` files will either be treated as `.d.mts` or...

@michael42 It might be worth opening an issue on typescript's repo with your findings.

Closing due to this being an upstream bug.