importHelpers: true is present in tsconfig.json which causes helpers to be imported from tslib, but if the surrounding project does not use TypeScript, the package will not be present. This also makes it possible to use libraries that depend on incompatible versions of tslib.
importHelpers: true
is present intsconfig.json
which causes helpers to be imported fromtslib
, but if the surrounding project does not use TypeScript, the package will not be present. This also makes it possible to use libraries that depend on incompatible versions oftslib
.Fixes #74