(
arch,
mainModulesByArch = this.getMainModulesByArch(),
)
| 1698 | // defined, then because mapWhereToArch("client") === "web", and "web" |
| 1699 | // matches web.browser, return this.config.mainModule.client. |
| 1700 | getMainModule( |
| 1701 | arch, |
| 1702 | mainModulesByArch = this.getMainModulesByArch(), |
| 1703 | ) { |
| 1704 | return this._getEntryModule(arch, mainModulesByArch); |
| 1705 | } |
| 1706 | |
| 1707 | // Analogous to getMainModulesByArch, except for this.config.testModule. |
| 1708 | getTestModulesByArch() { |
no test coverage detected