所以我在 NX 工作区中构建了一个 Angular 应用程序,并为每个可重用功能使用自定义库。
我有一个库来存储应用程序的模型。它是使用 NX 工作区构建的。例如。
nx g @nrwl/workspace:lib dc-models
使用nx serve可以正常构建和运行 它没有错误。
当我运行故事书时,例如
nx run dc-featurelib:storybook
它构建但它在终端中显示警告说它找不到模型。
WARNING in ./libs/dc-feature-panel/feature-panel/src/lib/feature-panel/feature-panel.component.ts 33:78-86
"export 'DcPanel' was not found in '@myproject/dc-models'
我如何使它正常工作并删除此警告?