diff --git a/aio/content/guide/upgrade.md b/aio/content/guide/upgrade.md
index d38b32ea2c..e34d15fad7 100644
--- a/aio/content/guide/upgrade.md
+++ b/aio/content/guide/upgrade.md
@@ -1165,8 +1165,16 @@ Install type definitions for the existing libraries that
you're using but that don't come with prepackaged types: AngularJS, AngularJS Material, and the
Jasmine unit test framework.
+For the PhoneCat app, we can install the necessary type definitions by running the following command:
+
- npm install @types/jasmine @types/angular @types/angular-animate @types/angular-aria @types/angular-cookies @types/angular-mocks @types/angular-resource @types/angular-route @types/angular-sanitize @types/angular-material --save-dev
+ npm install @types/jasmine @types/angular @types/angular-animate @types/angular-aria @types/angular-cookies @types/angular-mocks @types/angular-resource @types/angular-route @types/angular-sanitize --save-dev
+
+
+If you are using AngularJS Material, you can install the type definitions via:
+
+
+ npm install @types/angular-material --save-dev
You should also configure the TypeScript compiler with a `tsconfig.json` in the project directory