* Returns export type. * @param {ModuleGraph} moduleGraph the module graph * @param {boolean | undefined} strict the importing module is strict * @returns {ExportsType} export type * "namespace": Exports is already a namespace object. namespace = exports. * "dynamic": Check at runtime if _
(moduleGraph, strict)
| 173 | * "default-with-named": Provide a namespace object with named and default export. namespace = { ...exports, default: exports } |
| 174 | */ |
| 175 | getExportsType(moduleGraph, strict) { |
| 176 | return "dynamic"; |
| 177 | } |
| 178 | |
| 179 | /** |
| 180 | * Returns the path used when matching this module against rule conditions. |
no outgoing calls
no test coverage detected