我目前正在尝试编译我的Angular库,但是当我运行
时npm build:lib
始终存在错误:
财产&#39>包括'类型' string []'上不存在。
开发服务器正在运行,没有任何问题(ng serve
)。所以有人知道如何解决问题。
这是我的tsconfig.json的内容:
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"dom",
"es2017"
]
}
}