输入命令后出现 xlsx 样式错误 'yarn start'
Getting error for xlsx-style after entering command 'yarn start'
我导入了 xlsx-style 包来设置我的 xlsx 样式表的样式,然后我做了 'yarn start'。之后我在这里遇到错误,我正在附加错误
错误:
Webpack:84.273 秒后完成。
错误编译失败,出现 3 个错误4:08:23PM
未找到此依赖项:
- fs in ./node_modules/xlsx-style/xlsx.js, ./node_modules/xlsx-style/ods.js
要安装它,你可以运行: npm install --save fs
未找到相关模块:
- ./cptable in ./node_modules/xlsx-style/dist/cpexcel.js
/home/administrator/Documents/jan21/pgh/src/main/webapp/app/entities/configuration/financial-year-settings.component.ts(37,9) 中的错误:
TS2305:模块“/home/administrator/Documents/jan21/pgh/src/main/webapp/app/entities/service/calendarexcel.service”没有导出成员 'CalendarExcelService'。
版本:打字稿2.7.2
时间:54018ms
✖「wdm」:1772个模块
我通过在 webpack.config.js 中给出此代码修复了我的错误,这里的代码是:
node: {
fs: 'empty'
},
externals: [ {
'./cptable': 'var cptable'
} ]
我导入了 xlsx-style 包来设置我的 xlsx 样式表的样式,然后我做了 'yarn start'。之后我在这里遇到错误,我正在附加错误
错误:
Webpack:84.273 秒后完成。
错误编译失败,出现 3 个错误4:08:23PM
未找到此依赖项:
- fs in ./node_modules/xlsx-style/xlsx.js, ./node_modules/xlsx-style/ods.js
要安装它,你可以运行: npm install --save fs
未找到相关模块:
- ./cptable in ./node_modules/xlsx-style/dist/cpexcel.js /home/administrator/Documents/jan21/pgh/src/main/webapp/app/entities/configuration/financial-year-settings.component.ts(37,9) 中的错误: TS2305:模块“/home/administrator/Documents/jan21/pgh/src/main/webapp/app/entities/service/calendarexcel.service”没有导出成员 'CalendarExcelService'。 版本:打字稿2.7.2 时间:54018ms ✖「wdm」:1772个模块
我通过在 webpack.config.js 中给出此代码修复了我的错误,这里的代码是:
node: {
fs: 'empty'
},
externals: [ {
'./cptable': 'var cptable'
} ]