jargon

Frontend & browser·Modules, bundling and the build

you named the one file the build starts from and everything else was found by following its imports.

Entry point

The module a bundler begins traversal from, and the root of one output bundle. A multi-page application has one per page; a single-page one usually has a single entry plus whatever code splitting produces. Adding an entry point duplicates any shared code into both outputs unless a shared chunk is configured, which is a common cause of a suspiciously large total.

Commonly confused with