错误 TS5023:未知的编译器选项 'strictTemplates'
error TS5023: Unknown compiler option 'strictTemplates'
编译 angular 应用程序 (v10) 失败并出现此错误。
An unhandled exception occurred: tsconfig.json:14:5 - error TS5023: Unknown compiler option 'strictTemplates'.
14 "strictTemplates": true,
~~~~~~~~~~~~~~~~~
strictTemplates
是 angular 编译器的参数。
在你的tsconfig.json中:将参数移入angularCompilerOptions
"angularCompilerOptions": {
...,
"strictTemplates": true,
...
}
Angular >= 9 是必要的。
编译 angular 应用程序 (v10) 失败并出现此错误。
An unhandled exception occurred: tsconfig.json:14:5 - error TS5023: Unknown compiler option 'strictTemplates'.
14 "strictTemplates": true,
~~~~~~~~~~~~~~~~~
strictTemplates
是 angular 编译器的参数。
在你的tsconfig.json中:将参数移入angularCompilerOptions
"angularCompilerOptions": {
...,
"strictTemplates": true,
...
}
Angular >= 9 是必要的。