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)