Я пытаюсь обновить с Angular 8 до 9 (плющ). Я пытаюсь использовать разделяемую библиотеку, скомпилированную с использованием Angular 8. Я добавил:
"postinstall":"ngcc"
в свой пакет. json и попытался запустить ng cc. Каждый раз он выдает мне следующую ошибку:
TypeError: fn(...).finally is not a function
at AsyncLocker.<anonymous> (...../node_modules/@angular/compiler-cli/ngcc/src/locking/async_locker.js:44:63)
at step (.../node_modules/tslib/tslib.js:139:27)
at Object.next (.../node_modules/tslib/tslib.js:120:57)
at fulfilled (.../node_modules/tslib/tslib.js:110:62)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:189:7)
at Function.Module.runMain (module.js:696:11)
at startup (bootstrap_node.js:204:16)
at bootstrap_node.js:625:3
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! project-ng@1.0.0 postinstall: `ngcc`
npm ERR! Exit status 1
npm ERR!
Я пытался удалить node_modules, выполнить установку fre sh npm и попробовать, но ошибка не исчезла.
Вот мой tsconfig . json
{
"compilerOptions": {
"target": "ESNext",
"module": "ES2015",
"lib": [
"es2015",
"dom"
],
"moduleResolution": "node",
"sourceMap": true,
"declaration": true,
"importHelpers": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": true,
"typeRoots": [
"node_modules/@types"
]
},
"exclude": [
"node_modules",
"dist",
"src/**/*.spec.ts",
"src/**/*.e2e.ts",
"**/*.ngfactory.ts"
],
"angularCompilerOptions": {
"entryModule": "./src/app/app.module#AppModule",
"skipMetadataEmit": true
}
}
Любая помощь в этом направлении будет приветствоваться. Спасибо.