How do you install angular language service in the project?
You can install Angular Language Service in your project with the following npm command,
npm install --save-dev @angular/language-service
After that add the following to the "compilerOptions" section of your project's tsconfig.json
"plugins": [{"name": "@angular/language-service"}]
Note: The completion and diagnostic services works for .ts files only. You need to use custom plugins for supporting HTML files.
October 17, 2022
176
Read more
What is Angular Framework?
November 04, 2022
AngularWhat is a Angular module?
November 03, 2022
AngularWhat are the steps to use animation module?
October 31, 2022
Angular