export async function importRuntimeModule( baseUrl: string, parts: readonly string[], ): Promise { return (await import(new URL(parts.join(""), baseUrl).href)) as T; }