Description
It has been pointed out (in #612) that it isn't completely clear which TypeScript lib compiler option requirements your application must have when using this library.
While the default compiler options with assign lib to either DOM,ES5,ScriptHost or DOM,ES6,DOM.Iterable,ScriptHost (depending on the target JS version), this library using AsyncIterable<T>, which means it also requires esnext.asynciterable.
What is the right way for typescript libraries to declare this sort of dependency?
Requirements (place an x in each of the [ ])
Description
It has been pointed out (in #612) that it isn't completely clear which TypeScript
libcompiler option requirements your application must have when using this library.While the default compiler options with assign lib to either
DOM,ES5,ScriptHostorDOM,ES6,DOM.Iterable,ScriptHost(depending on the target JS version), this library usingAsyncIterable<T>, which means it also requiresesnext.asynciterable.What is the right way for typescript libraries to declare this sort of dependency?
Requirements (place an
xin each of the[ ])