I'm facing this error while doing tsc. However, my app seems working. error TS1184: Modifiers cannot appear here.
I'm calling Run App from Index.html
export function RunApplication(url:string)
{
platformBrowserDynamic().bootstrapModule(createAppModule(url));
}
export function createAppModule(url:string)
{
@NgModule({
..... standard RC5 code here per docs
})
export class AppModule {}
return AppModule;
}