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
As previously discussed, TypeScript compilation supports many compilation features to alter code depending on the ECMAScript and environment targets. This is problematic since many different targets must be supported with a single build output. It also makes testing much more difficult since in some cases it may make a specific language construct completely unavailable.
Any feature not related to types should be disabled. If shims are needed, they should be manually imported and used depending on specific conditions.
The text was updated successfully, but these errors were encountered:
As previously discussed, TypeScript compilation supports many compilation features to alter code depending on the ECMAScript and environment targets. This is problematic since many different targets must be supported with a single build output. It also makes testing much more difficult since in some cases it may make a specific language construct completely unavailable.
Any feature not related to types should be disabled. If shims are needed, they should be manually imported and used depending on specific conditions.
The text was updated successfully, but these errors were encountered: