ProgressNS / nativescript-ui-feedback

This repository is used for customer feedback regarding Telerik UI for NativeScript. The issues system here is used by customers who want to submit their feature requests or vote for existing ones.
Other
115 stars 21 forks source link

ERROR in The target entry-point "chart-directives" has missing dependencies: - ./../ #1437

Open imshibaji opened 4 years ago

imshibaji commented 4 years ago

Recently I got this kind of error. How I solve it. After Plugins Added. then I try to run into my android environment. then i got this issue. please give me solution.

`WARNING in Entry point 'chart-directives' contains deep imports into '/Users/shibaji/Desktop/projects/pandeetji_app/MobileApp/node_modules/@nativescript/angular/element-registry'. This is probably not a problem, but may cause the compilation of entry points to be out of order.

ERROR in The target entry-point "chart-directives" has missing dependencies:

relez commented 4 years ago

Hey there, if you are using nativescript + angular 9 with ivy support, add portion of code to the ngcc.config.js file:

"nativescript-ui-chart": {
    entryPoints: {
        "angular": {
            override: {
                main: "./chart-directives.js",
                typings: "./chart-directives.d.ts",
            },
            ignoreMissingDependencies: true,
        }
    },
    ignorableDeepImportMatchers: [
        /tns-core-modules\//,
        /@nativescript\/core\//,
        /@nativescript\/angular\//
    ]
},

If you have any further questions, please read this guide: https://github.com/NativeScript/nativescript-angular/wiki/Updating-and-developing-for-@nativescript-angular-v9-with-Ivy-or-without/0b4fa3ccb338dd2e8289eb3255136b43f4d28b86

I hope this helps.