最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Angular version update giving an error - Migration failed: Could not find any tsconfig file - Stack Overflow

programmeradmin1浏览0评论

I am trying to update an Angular project (in version 8) to version 9. when running the ng update it gives an error saying

Migration failed: Could not find any tsconfig file. Cannot migrate dynamic queries.

after some time. but when check the version it shows as 9. but many required changes are not there.

any solution or workaround is appreciated.

I am trying to update an Angular project (in version 8) to version 9. when running the ng update it gives an error saying

Migration failed: Could not find any tsconfig file. Cannot migrate dynamic queries.

after some time. but when check the version it shows as 9. but many required changes are not there.

any solution or workaround is appreciated.

Share Improve this question asked Jun 29, 2021 at 10:39 i_sapumali_sapumal 2322 silver badges10 bronze badges 2
  • Hi @i_sapumal. Did you find the solution for this? I'm stuck with the exact same error. Thanks! – Ivan Clavijos Commented Nov 1, 2021 at 22:11
  • I'm stuck on a similair issue trying to upgrade from Angular 11 to 12. Migration failed: Could not find any tsconfig file. Cannot migrate `ActivatedRouteSnapshot.fragment` accesses. Same question did you find a solution? – Showcaselfloyd Commented Dec 14, 2021 at 18:59
Add a ment  | 

5 Answers 5

Reset to default 4

In order to run the migrations you need to install the @angular-devkit/core package

npm i @angular-devkit/core@<VERSION> -D
ng update --from <FROM_VERSION> --to <VERSION> --migrate-only --allow-dirty --verbose @angular/core

After migrations you could remove the package again.

I got the same error upgrading from angular 8 to 9. I had a tsconfig file in my project and it was linked well. In my case the error was caused by the @angular-devkit/schematics package. I resolved the error by the following steps:

  1. remove the package @angular-devkit/schematics from your package.json
  2. delete the node_modules and package-lock.json
  3. npm i (I need to execute npm i --legacy-peer-deps - but be careful with that)
  4. npx @angular/cli@9 update @angular/core@9 @angular/cli@9

Let me now if this worked. Hope this might help someone

It says cannot migrate to dynamic queries please try the below code

npx @angular/cli@9 update @angular/core@9 @angular/cli@9 --force

When I was hit with this error. All I had to do was, run; 'ng update'. I was given the suggestion what to do next. Attached for reference below;

In my case I had to run as suggested; 'ng update @angular/core@12'

✖ Migration failed: Could not find any tsconfig file. Cannot migrate AbstractControl.parent accesses.
  See "/private/var/folders/s/C/K/angular-errors.log" for further details.

    app_code % ng update
    Using package manager: 'npm'
    Collecting installed dependencies...
    Found 29 dependencies.
        We analyzed your package.json, there are some packages to update:
        
          Name                               Version                  Command to update
         --------------------------------------------------------------------------------
          @angular/core                      11.2.14 -> 12.2.9        **ng update @angular/core@12**

For me the issue was my version of node. v12.22.12 worked for me.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论