Rebecca Stevens
Rebecca Stevens
TypeScript path mappings don't seem to be supported. Config: ```jsonc { "baseUrl": "./src", "paths": { "@/app": ["./index"], } } ``` Source file: ```ts import type { Foo } from "@/app";...
### Discussed in https://github.com/RebeccaStevens/deepmerge-ts/discussions/49 Originally posted by **NightProgramming** February 15, 2022 Sometimes it's useful to not create a new merge result object, but to have an existing object, that is...
Coverage reports are reporting zero since switching to [c8](https://www.npmjs.com/package/c8).
```ts import { deepmergeDefined } from "deepmerge-ts/presets"; ```
For a union of only 2 elements, this would just be: ```ts type NonDiscriminatedUnion = Union | UnionToIntersection ``` However, the type would be more complex for the case of...
## Rollup Plugin Name: `commonjs`, `node-resolve`, and `pluginutils` This PR contains: - [ ] bugfix - [ ] feature - [ ] refactor - [ ] documentation - [x] other...
- Rollup Plugin Name: @rollup/plugin-typescript - Rollup Plugin Version: 8.2.5 - Rollup Version: 2.56.3 - Operating System (or Browser): Ubuntu 20.04.2 LTS (via WSL on Windows 10) - Node Version:...
Here `CB` is an object with a bunch of functions on it. The `forEach` function has nothing to do arrays but gets flagged. ```js import * as CB from "strict-callbag-basics";...