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 "
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 "
tsd
is deprecated (you can see it here). The following steps helped me install the type definitions.
In the application folder
Run the following commands
npm init
npm install --save @types/angular
npm install --save @types/jquery
npm install --save @types/lodash
I'm new to type script and I'm having the same issue as you are having now. It seems tsd is out dated and you need to use typings.
npm install typings --global
It seems tsd is out dated and you need to use typings.
typings install dt~angular --global
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..!