Nicholas Jamieson
Nicholas Jamieson
TypeScript is already broken apart into libraries that contains specific type declarations - the types for said libraries are included by adding the libraries via TypeScript's [`lib` compiler option](https://www.typescriptlang.org/docs/handbook/compiler-options.html). To...
The only way that I can see it working in the RxJS codebase is if there are separate import locations for DOM and non-DOM type declarations. With the former requiring...
> The downside is that it requires TypeScript v4.1+. Not sure if RxJS v7 will require that anyway. TypeScript 4.2 will be the minimum-supported version. > What do you think...