2017-02-01 7 views

Antwort

0

Nach This issue

It's just can find the tsconfig in a non existing folder, somehow its trying to look it up deeper than it should.

  • src

    • tsconfig.js

and not

  • src

    • client

      • tsconfig.js

.............

In angular-cli 0.0.30 there's a client folder between src/ and app. So now, when you generate a project, it's src/client/app not src/app.

Mögliche Lösung

If you're upgrading the CLI for an existing project, please add that folder manually and move app inside of the new client dir

Verwandte Themen