在Angular 15中,不能像以前版本中那样使用Browserslist来指定支持的浏览器。取而代之的是,需要在“projectRoot/tsconfig.json”中使用“compilerOptions.target”来指定目标浏览器。例如:
{
"compilerOptions": {
"target": "es2021",
// other compilerOptions
}
// other tsconfig.json properties
}
该示例中将目标浏览器设置为ES2021规范的浏览器,而非使用Browserslist。这是Angular 15中指定支持浏览器的推荐方式。