Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

tsd install and tsd query commands returning " zero results " message

When i'm running any of these commands in git bash windows

tsd query angular-material

tsd query angular

tsd install angular angular-material

every time i'm getting this message " >> zero results "

like image 459
Amit Singh Avatar asked Feb 04 '17 04:02

Amit Singh


Video Answer


2 Answers

tsd is deprecated (you can see it here). The following steps helped me install the type definitions.

In the application folder

  1. Delete typings folder (if it exists)
  2. Run the following commands

    npm init

    npm install --save @types/angular

    npm install --save @types/jquery

    npm install --save @types/lodash

like image 187
nik Avatar answered Nov 16 '22 01:11

nik


replace the code with npm install --save @types/angular or npm install --save @types/jquery or npm install --save @types/angular-material

Thats it... Yor are done..!

like image 39
Kevin James Naippalliuzhathil Avatar answered Nov 16 '22 01:11

Kevin James Naippalliuzhathil