Reputation: 9191
I typed dir /s/b systemjs.config.js
into the Windows command line from the root directory of a new Angular app that was installed by Angular CLI, but the Windows command line responded by saying File Not Found.
Is SystemJS installed by default by Angular CLI? If yes, how do I find its config file? If not, what is used instead?
Upvotes: 1
Views: 1166
Reputation: 39258
Angular CLI does not use SystemJS anymore. They have moved over to Webpack, so there will not be a systemjs.config.js
file in your project.
Upvotes: 1