我创建了一个可重用的组件,并使用ng-packagr导出了我的文件。我要导出的所有文件都是TypeScript文件,但我还需要导出JS文件(commonJS.js)。但是,我无法通过将其包含在我的public_api.ts文件中来导出它:
export * from './e2e/util/common'
export * from './e2e/util/commonJS'
export * from './e2e/util/frameHandler'
同时通过运行来构建dist文件夹:
npm run ng-packagr -p ng-package.json
我遇到以下错误:
BUILD ERROR
Could not resolve './e2e/util/commonJS' from dist\esm2015\public_api.js
npm ERR! code ELIFECYCLE
npm ERR! errno 111
npm ERR! ddvs-protractor-framework@1.0.10 build:dist: `ng-packagr -p ng-package.json`
npm ERR! Exit status 111
有没有一种方法可以将JS文件和TS文件一起导出?