You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 3, 2022. It is now read-only.
The lib compiler option is used to tell the TypeScript compiler which APIs will be available at runtime in the environment that will execute the transpired code. By default, lib will include type definitions for the DOM in addition to APIs corresponding to whatever level ECMAScript the target environment is expected to be (sourced from the target property).
The project tsconfig.json file should be updated with its lib property configured to whatever ECMAScript version is being targeted in order to override the default inclusion of DOM APIs.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The
lib
compiler option is used to tell the TypeScript compiler which APIs will be available at runtime in the environment that will execute the transpired code. By default,lib
will include type definitions for the DOM in addition to APIs corresponding to whatever level ECMAScript the target environment is expected to be (sourced from thetarget
property).The project tsconfig.json file should be updated with its
lib
property configured to whatever ECMAScript version is being targeted in order to override the default inclusion of DOM APIs.The text was updated successfully, but these errors were encountered: