E1030#
包别名为空。将使用默认包别名。
错误示例#
{
"is-main": true,
"import": [
{
"path": "username/hello/lib",
"alias": "" // Warning: The package alias is empty. The default package alias will be used instead.
}
]
}
建议#
为包使用非空别名:
{
"is-main": true,
"import": [
{
"path": "username/hello/lib",
"alias": "hello"
}
]
}