Beta 8 Upgrad issue "No Directive annotation found on MyApp"

Hi,

I just upgraded to Beta 8 and I (at least think) followed the Migration Guide provided on Github.

However I do get the following error when I try to run the App:
EXCEPTION: No Directive annotation found on MyApp

My app.ts looks like the following:

import {SpinnerComponent} from './components/spinner-component/spinner-component';

@Component({
  template: '<ion-nav id="root-nav" [root]="rootPage"></ion-nav><spinner-component id="spinnerComponent"></spinner-component>',
  directives: [SpinnerComponent]
})
export class MyApp {
  rootPage: Type;
// .... code .....
}

ionicBootstrap(MyApp, [UserService, MediaService, AlarmService, XYService, ], {--my-config--});

Does anyone have a hint?

Thank you,
P

I suspect you have stale imports referencing old “angular2/” module names somewhere.

Thank you, you were right, there was one import left!

However, I got another error now “Uncaught RangeError: Maximum call stack size exceeded”, anyone have an idea on that? Would really help me!

Thank you,
P

I am having this problem in beta 11. I link my local dev version to npm and add all @angular modules but when i run the sample app of tabs I get this error. Any help would be appreciated.