我正在尝试将我的 Angular 应用程序升级到 Angular 8、webpack 4。出现以下 3 个错误:
TS2339: Property 'decorate' does not exist on type 'typeof Reflect'.
TS2539: Cannot assign to 'HeroComponent' because it is not a variable.
TS2306: File 'C:/Users/SS/Documents/angularupgrade/Test/client/app/hero.component.ts' is not a module.
我的英雄组件:
//hero.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `<span>Hello {{name}}</span>`,
})
export class HeroComponent { name = 'Angular'; }