Angular 9 - The target entry-point has missing dependencies

后端 未结 6 1527
南笙
南笙 2021-02-06 23:09

I have upgraded an Angular library to Angular 9. However when I attempt to use that library in another Angular 9 project I get an error like this:

The target entry-poi

6条回答
  •  野的像风
    2021-02-06 23:45

    Modify your component project to change the absolute path to a relative path.

    Such as:

    import {xxx} from 'src/xxx/xxx.module';
    

    to:

    import {xxx} from '../../xxx/xxx.module';
    

提交回复
热议问题