( id: string, source: string, makeAbsoluteExternalsRelative: boolean | 'ifRelativeSource' )
| 830 | } |
| 831 | |
| 832 | function isNotAbsoluteExternal( |
| 833 | id: string, |
| 834 | source: string, |
| 835 | makeAbsoluteExternalsRelative: boolean | 'ifRelativeSource' |
| 836 | ): boolean { |
| 837 | return ( |
| 838 | makeAbsoluteExternalsRelative === true || |
| 839 | (makeAbsoluteExternalsRelative === 'ifRelativeSource' && isRelative(source)) || |
| 840 | !isAbsolute(id) |
| 841 | ); |
| 842 | } |
| 843 | |
| 844 | async function waitForDependencyResolution(loadPromise: LoadModulePromise) { |
| 845 | const [resolveStaticDependencyPromises, resolveDynamicImportPromises] = await loadPromise; |
no test coverage detected
searching dependent graphs…