-
As a developer I want to make use of the ES2015 spread operator in object literals (not in array literals #1378 or call expressions #1377).
Syntax is already in place (see #46). This task is about …
-
Not sure what it would take to make it work on RN in Hermes.
https://github.com/facebook/hermes/blob/main/README.md
---
https://github.com/facebook/hermes/blob/73cb6664fe233150e1313553a135ffc47…
-
current:
```ts
interface AsyncIterable {
[Symbol.asyncIterator](): AsyncIterator;
}
```
expected type:
```ts
interface AsyncIterable {
[Symbol.asyncIterator](): AsyncIterator;
}
```…
-
The test suites -- or at least anything using npm -- are only runnable against 12.x. What do you consider the practical oldest-supported version of Javascript for this library?
tl;dr for the below…
-
**TypeScript Version:** 3.2.2
**Search Terms:**
error TS2321: Excessive stack depth comparing types
lodash
**Code**
```ts
import { PartialDeep, pick } from 'lodash';
type MapFunc =…
-
## Summary
## Repro steps
1. create a index file as follows:
```ts
export * as circle from './circle';
export * as regular from './regular';
export * as solid from './solid…
-
Using mitt in Typescript with `"moduleResolution": "NodeNext"` gives "error TS2349: This expression is not callable." error.
```
"mitt": "^3.0.1"
"typescript": "^5.3.3"
```
**tsconfig.json**
…
-
Apollo link makes heavy use of `zen-observable`.
However ES2018 features async generators, aka async iterators, and it seems to me that they are a replacement for Observables, with less object-ori…
-
Test case
https://github.com/dudykr/stc/blob/19aab18c6b8e1d71373e3345a0c335f58596bddd/crates/stc_ts_type_checker/tests/conformance/types/asyncGenerators/types.asyncGenerators.es2018.1.ts#L118-L120
…
-
I have a project that has a library of streaming classes that are intended to be used both in NodeJS runtimes and in browsers. I'd like to use web-streams-polyfill in the browser.
The main problem…