iamcco / coc-angular

Angular Language Service coc extension for (neo)vim
146 stars 17 forks source link

Angular 14 breaks coc-angular #62

Closed fcojavierdomenech closed 10 months ago

fcojavierdomenech commented 2 years ago

Describe the bug Incompatibility with angular 14

To Reproduce Steps to reproduce the behavior: Use any coc-angular option withing an Angular 14, it won't work

I fixed it editing this plugin's package.json file and changing the angular language-server to 14:

....
"dependencies": {
    "v12_language_service": "file:v12_language_service",
    "@angular/language-server": "14",
    "typescript": "~4.6.2"
  }
blasco commented 1 year ago

Same situation for me, it doesn't seem to be working for angular 14

msbatarce commented 1 year ago

@fcojavierdomenech man,you saved me a lot of time with this small fix. Thank you