Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

A common best practice is to analyze your project files via the output of a command like tree --du -h -I 'node_modules|sl-dry-run-output|sl_dist' -P "*.[jt]s*"
When executed from the root folder of your project, it helps to define accurate Ignore Rules described below based on the detailed list of javascript and typescript files the agent will find.

...

It is recommended as well to ignore legacy versions of JS files generated for backward compatibility of older browser versions like es5, es2015

Code Block
**/es5
*-es5.*js

More information about the potential consequences is detailed in a dedicated article https://sealights.atlassian.net/l/c/dr2yUT7g

...