I want to create Angular application without CLI. After that I get an error:
Error: Can\'t resolve all parameters for ApplicationModule: (?).
Install core-js by command:
npm i core-js
Add in main.ts file:
main.ts
import 'core-js/es6/reflect'; import 'core-js/es7/reflect';
Btw. I have spent a whole day to resolve this.