### [READ] Step 1: Are you in the right place? * For issues or feature requests related to __the code in this repository__ file a Github issue. ### [REQUIRED] Step 2: Describe your environment * Operating System version: OSX 10.11.3 * Firebase SDK version: 5.12.0 * Library version: _____ * Firebase Product: firebase-admin for node.js (auth, database, storage, etc) ### [REQUIRED] Step 3: Describe the problem #### Steps to reproduce: _What happened? How can we make the problem occur?_ I'm using typescript environment to code the server on Node.js When I compile the code, it's returning with an error: ``` > rimraf dist && tsc --outDir dist node_modules/firebase-admin/lib/index.d.ts(18,22): error TS7016: Could not find a declaration file for module '@google-cloud/storage'. '/<path-to-project>/node_modules/@google-cloud/storage/src/index.js' implicitly has an 'any' type. npm ERR! code ELIFECYCLE npm ERR! errno 2 ``` I have the upgraded firebase-admin to the latest version (5.12.0) ``` "firebase-admin": "^5.12.0", ```