I found a solution to my problem using the DefinitelyTyped Definition Manager: http://definitelytyped.org/tsd/
I installed tsd globally using NPM:
npm install -g tsd
then using the command line in the root folder of my solution, I installed the definitions of type AngularJS by entering the following command:
tsd install angular
He automatically uploaded the type definitions to a folder named "typings / angularjs", and IntelliSense began to work as intended.
I can also confirm that, using this approach, AngularJS core NuGet packages or certain definitions are not required, and ReSharper does not block IntelliSense.
UPDATE:
It seems that TSD is already outdated and replaced with a standard design . It also integrates well with TSD and has specific options for TSD users. While TSD is still working fine, keep in mind that TSD will no longer be supported in the future.
source share