在 ng-packagr 的 v13 中,mixin
的实现方式发生了变化,因此你可能需要修改你的代码。在混入(mixin
)中,一些 @Input()
和 @Output()
被转换为 Angular setter
和 getter
。在 Angular v13 中,如果某个组件继承了混合类型,还需要在该组件中手动实现与指令的绑定。因此,为了避免这些问题,建议在升级到 Angular 13 时,将mixin
的实现方式替换为继承。
以下是一个示例代码,展示如何使用类继承来代替 mixins。
import { Component, Input } from '@angular/core';
import { SimpleMixin } from './mixin';
class BaseComponent extends SimpleMixin {
@Input() defaultValue: string = '';
}
@Component({
selector: 'app-component',
template: `{{ hello() }}
`,
})
export class AppComponent extends BaseComponent {
hello() {
return `Hello ${this.name || this.defaultValue}!`;
}
}
tsconfig.json
的选项。如果你遇到了升级到 Angular 13 后构建过程中,遇到了类似于下面这种的 TypeScript 编译错误:
ERROR in ./src/app/app.module.ts 25:100-110
TS2769: No overload matches this call.
Overload 1 of 3, '(options: CompilerOptions | undefined, fileNames?: readonly string[] | undefined): Program', gave the following error.
Argument of type 'Configuration' is not assignable to parameter of type 'CompilerOptions'.
Overload 2 of 3, '(jsonObject: any, basePath: string, existingOptions?: CompilerOptions | undefined, configFilePath?: string | undefined, watchOptions?: WatchOptions | undefined): P...', gave the following error.
Argument of type 'Configuration' is not assignable to parameter of type 'TsConfigSourceFile | CompilerOptions'.
那么这可能是由于 TypeScript 引用了不同的tsconfig.json
造成的。解决办法是在 webpack 配置中添加引用 tsconfig.json
的选项。
在 angular.json
文件中的 build
配置中添加以下内容: