ERROR in node_modules/exceljs/index.d.ts(1511,41): error TS2694: Namespace ‘NodeJS’ has no exported

原文链接:这里
0.背景及解决办法
加了个excel导出插件,导出的时候开始报错。

ERROR in node_modules/exceljs/index.d.ts(1511,41): error TS2694: Namespace ‘NodeJS’ has no exported member ‘TypedArray’.
解决办法,装一下

yarn add --dev @types/node@^12.0.2
或者
npm install --save @types/node
注:本人安装高版本还是不好用,安装了12.0.2这个版本后开始不报错了。

你可能感兴趣的:(前端,typescript,vue.js,前端)