--- source: crates/biome_js_analyze/tests/spec_tests.rs expression: invalid_wild_alias_reexport.ts --- # Input ```ts export * as bar from "foo"; ``` # Diagnostics ``` invalid_wild_alias_reexport.ts:1:1 lint/nursery/noBarrelFile ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ! Avoid barrel files, they slow down performance, and cause large module graphs with modules that go unused. > 1 │ export * as bar from "foo"; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2 │ i Check this thorough explanation to better understand the context. ```