Возникает ошибка `Uncaught TypeError: xxx is not a constructor/function` Воспроизвести можно так: 1. Создаем пару экстеншенов: ```console $ mkdir -p ./local/js/partner/module && cd $_ $ bitrix create ext1 $ bitrix create ext2 ``` 2. Добавляем в `ext2` импорт `ext1`: ```diff --- a/local/js/partner/module/ext2/src/ext2.js +++ b/local/js/partner/module/ext2/src/ext2.js @@ -1,10 +1,13 @@ import {Type} from 'main.core'; +import {Ext1} from "partner.module.ext1"; export class Ext2 { constructor(options = {name: 'Ext2'}) { this.name = options.name; + + this.ext1 = new Ext1(); } setName(name) ``` 3. `$ bitrix build -p .` 4. Подключаем: ```php <?php \Bitrix\Main\UI\Extension::load(['partner.module.ext2']); ?> <script> var ext2 = new BX.Partner.Module.Ext2(); </script> ``` Видим ошибку: 
Возникает ошибка
Uncaught TypeError: xxx is not a constructor/functionВоспроизвести можно так:
Создаем пару экстеншенов:
Добавляем в
ext2импортext1:$ bitrix build -p .Подключаем:
Видим ошибку: