webpack中使用typescript引入lodash报错

偏向技术
/ 0 评论 / 345 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2021年04月01日,已超过1388天没有更新,若内容或图片失效,请留言反馈。

webpack中使用typescript引入lodash方式

shell
npm install lodash --save
npm install @types/lodash --save-dev
12

index.ts

js
/**
 * 如果使用 import _ from 'lodash' 引入,会报以下提示:
 * TS1259: Module '"……/node_modules/@types/lodash/index"' can only be default-imported using the 'esModuleInterop' flag
 * 如果想要保留这种引入方式,需要在文件 tsconfig.json 中设置"allowSyntheticDefaultImports" : true 和 "esModuleInterop" : true
 */
import * as _ from 'lodash'

_.join(['Hello', 'Typescript'], ' ')
12345678
0

评论 (0)

取消