When you use tools like dependency-cruiser and madge to see dependencies of a given module, they only actually used dependencies.
But if your module or any of its dependencies imports from index-files (AKA barrel files), all modules mentioned in those index files get interpreted and executed. A lot of stuff may be going there:
- Declaration of various constants.
- Generation of derived constants.
- Construction of React components.
console.log
s.