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
Right now, users who are trying to consume this library with TypeScript using settings like noImplicitAny are having a negative user experience because the packaged .ts files are getting fully re-checked. See microsoft/TypeScript#15363 for an example of a problem caused by this.
Running TypeScript with --declaration to produce .d.ts files and adding your regular .ts files to an .npmignore file will prevent this issue.
The text was updated successfully, but these errors were encountered:
Right now, users who are trying to consume this library with TypeScript using settings like
noImplicitAny
are having a negative user experience because the packaged.ts
files are getting fully re-checked. See microsoft/TypeScript#15363 for an example of a problem caused by this.Running TypeScript with
--declaration
to produce.d.ts
files and adding your regular.ts
files to an.npmignore
file will prevent this issue.The text was updated successfully, but these errors were encountered: