(id, importer, isRequire, scan)
| 352 | return newResolvedId === resolvedId ? undefined : newResolvedId |
| 353 | }, |
| 354 | resolveSubpathImports(id, importer, isRequire, scan) { |
| 355 | return resolveSubpathImports(id, importer, { |
| 356 | ...options, |
| 357 | isRequire: resolveOptions.isRequire ?? isRequire, |
| 358 | scan, |
| 359 | }) |
| 360 | }, |
| 361 | |
| 362 | ...(partialEnv.config.command === 'serve' || isJsPluginContainer |
| 363 | ? { |
nothing calls this directly
no test coverage detected