I am looking to eliminate the typings
in our Typescript project.
After successfully removing most typings dependencies with Typescript 2, I'm left with just one for chrome-app
:
https://github.com/uProxy/uproxy/compare/master...fortuna:master
When using this command:
npm install @types/chrome-app --save-dev
The package cannot be found, even though it is available on DefinitelyTyped: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/types-2.0/chrome
What could be the issue? How can I install the chrome-app definitions with npm instead of typings?
Update (December 17, 2016): A bug in the @types/chrome-app
package has been resolved. The npm
command mentioned earlier now functions properly.