Hitesh Balar

Results 5 comments of Hitesh Balar

Not a problem at all.. it is just typings error. Pouchdb's typings is not installed that's why. But project is built you can proceed.

@Xotabu4 Its webpack build process watching your changes when you modify your source it will re-build your app. Its optional & defined in package.json `"build": "npm run start:webpack", "start:webpack": "webpack...

You can just remove error by installing following dependency. `typings install dt~pouchdb --save --global`

Add `custom-typings.d.ts` file to root directory & add the following content to it. ``` declare module 'PouchDB' { namespace PouchDB {} export = PouchDB; } declare module '*'; ```