After upgrading to ionic-angular. I'm getting following message, which is missing Promise ts.
ERROR in [default] /Users/.../node_modules/rxjs/observable/PromiseObservable.d.ts:10:25
Cannot find name 'Promise'.
a solution using tsd https://github.com/ReactiveX/RxJS/issues/1066
How I can solve this for ionic?
{
"compilerOptions": {
"module": "commonjs",
"target": "es6" // <---- change to es6
}
}
Most helpful comment
Solution