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
#2264 added "use strict" when the tsconfig option alwaysStrict is true, but it emits it even when the format is ES modules. ES modules are always in strict mode, so the pragma is unnecessary. It should only be added if the format is not ESM.
The text was updated successfully, but these errors were encountered:
#2264 added
"use strict"
when the tsconfig optionalwaysStrict
is true, but it emits it even when the format is ES modules. ES modules are always in strict mode, so the pragma is unnecessary. It should only be added if the format is not ESM.The text was updated successfully, but these errors were encountered: