错误 TS5023:未知的编译器选项“strictTemplates”

and*_*mel 2 ivy typescript tsconfig angular

编译 Angular 应用程序 (v10) 失败并出现此错误。

An unhandled exception occurred: tsconfig.json:14:5 - error TS5023: Unknown compiler option 'strictTemplates'.

14     "strictTemplates": true,
       ~~~~~~~~~~~~~~~~~
Run Code Online (Sandbox Code Playgroud)

and*_*mel 7

strictTemplates 是角度编译器的参数。

在你的 tsconfig.json: 移动里面的参数 angularCompilerOptions

"angularCompilerOptions": {
  ...,
  "strictTemplates": true,
  ...
}
Run Code Online (Sandbox Code Playgroud)

角度 >= 9 是必要的。

更多信息:https : //angular.io/guide/template-typecheck