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 per the Typescript guidelines, we need to set sideEffects to false in the package.json files.
Relevant section from the guidelines
DO set sideEffects to false. Side effecting libraries must be explicitly approved during design review. The sideEffects field is used by Webpack and potentially other tools as an indicator of how aggressively the package can be optimized.
Side effects refer to modifications to the runtime environment of the program as a result of including a module. For example, including a polyfill library is a sideEffect as it mutates the global environment and later code depends on its presence. Side effects make it harder for tools to optimize your build and should be avoided
This issue is to track the required update in both EPH and Event Hubs
The text was updated successfully, but these errors were encountered:
ramya-rao-a
changed the title
Update package.json files to have sideEffects set to false
[Event Hubs] Update package.json files to have sideEffects set to false
May 2, 2019
As per the Typescript guidelines, we need to set
sideEffects
tofalse
in the package.json files.Relevant section from the guidelines
Side effects refer to modifications to the runtime environment of the program as a result of including a module. For example, including a polyfill library is a sideEffect as it mutates the global environment and later code depends on its presence. Side effects make it harder for tools to optimize your build and should be avoided
This issue is to track the required update in both EPH and Event Hubs
The text was updated successfully, but these errors were encountered: