Sunday, 4 June 2017

Does angular-cli use SystemJS?

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 in its stead?


Steps To Reproduce The Problem:

I took the following steps to create the new Angular project:

  1. Start by installing Angular-CLI with the following command, making sure to check the prerequisites first:

    npm install -g @angular/cli

  2. This ended with a note to upgrade using the following command:

    npm i -g npm

  3. Create the new project by typing:

    ng new angularCLI-SeedProject

  4. Navigate the command prompt to the new project directory:

    cd C:\projects\test\angularCLI-SeedProject

  5. Search for systemjs.config.js

    dir /s/b systemjs.config.js



via CodeMed

No comments:

Post a Comment