find module 'alert-custom/custom-alert.component' or its corresponding type declarations.
в примере
https://stackblitz.com/edit/stackblitz-starters-yg78hc?file=src%2Fmain.ts
если этот компонент на самом деле есть
а должно работать? ts в вашем случае не настроен резолвить такой path
либо "../alert-custom/custom-alert.component" либо в tsconfig добавьте path но наверно вы не ожидаете это делаете каждый раз
заменил импорт на import { CustomAlertComponent } from '../alert-custom/custom-alert.component.ts'; теперь получаю ошибку Error in src/main.ts (10:38) An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.
В конце ".ts" уберите
да, я потом это понял
Обсуждают сегодня