gpt4 book ai didi

angular - Angular CLI 版本 9.1.1 的 Visual Studio CODE 中的 angular.json 错误中的 "Property Not Allowed"

转载 作者:行者123 更新时间:2023-12-03 14:35:04 26 4
gpt4 key购买 nike

我使用 Angular CLI 9.1.1 创建了一个新项目,VSCode 在 angular.json 中给了我以下警告文件:

Property AM is not allowed

AM 是我的项目名称

screenshot

我想解决此警告,但不知道如何解决。

最佳答案

架构区分大小写。如果你想修复:

去:
./node_modules/@angular/cli/lib/config/schema.json

在第 27 行左右,您应该会发现:

 "projects": {
"type": "object",
"patternProperties": {
"^(?:@[a-z0-9-~][a-z0-9-._~]*\/)?[a-z0-9-~][a-z0-9-._~]*$": {
"$ref": "#/definitions/project"
}
},

更改正则表达式模式以允许大写项目名称:
"^(?:@[a-zA-Z0-9-~][a-zA-Z0-9-._~]*\/)?[a-zA-Z0-9-~][a-zA-Z0-9-._~]*$"

关于angular - Angular CLI 版本 9.1.1 的 Visual Studio CODE 中的 angular.json 错误中的 "Property Not Allowed",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61179012/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com