Can't resolve all parameters for ApplicationModule: (?)
See original GitHub issueI have this repo https://github.com/kuncevic/ngx-line-chart-issue that successfully runs locally however when I am importing that in to stackblitz https://stackblitz.com/github/kuncevic/ngx-line-chart-issue it is giving an error screen:
Error in /turbo_modules/@angular/compiler@7.0.1/bundles/compiler.umd.js (1098:21)
Can't resolve all parameters for ApplicationModule: (?).
Any ideas why?
Issue Analytics
- State:
- Created 5 years ago
- Reactions:9
- Comments:17
Top Results From Across the Web
angular - Can't resolve all parameters for ApplicationModule
js/dist/zone-testing'; declare const require: any; // First, initialize the Angular testing environment. getTestBed().initTestEnvironment( ...
Read more >Ugraded to Angular 9: Error: Can't resolve all parameters for ...
I upgraded my app to Angular 9 & am getting the following error: Error: Can't resolve all parameters for ApplicationModule: (?)
Read more >Fixing the “can't resolve all parameters” exception with ...
Here's what the error looked like: Can't resolve all parameters for QuillConfigurationDirective: [object Object], (?). The (?) indicates that Angular couldn't ...
Read more >Can't resolve all parameters for component in Angular
Can't resolve all parameters for AppComponent: (?). Most сases can be resolved by adding following line in the tsconfig.json : "compilerOptions" ...
Read more >Uncaught Error: Can't resolve all parameters for ToastConfig
onShow() { const options: ToastConfig = { extendedTimeOut: 30000, ... compiler.es5.js:15997 Uncaught Error: Can't resolve all parameters for ToastConfig: ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
adding
import 'core-js/es7/reflect';
into polyfills.ts solved the issue for meI have the same issue when I updated the version(I use
import 'core-js/es7/reflect';
).The new version of core-js has been changed.
import 'core-js/features/reflect';
It’s working.old version:
"core-js": "^2.6.1"
new version:
"core-js": "^3.1.4"