wlx200510 / webpack4.x-learn

学习webpack4.0的最新配置语法和新特性,分享给大家
177 stars 66 forks source link

dll打包时若包含@types等的包 好像会出错,似乎需要排除掉对ts环境会友好些。 #3

Closed iam2r closed 5 years ago

iam2r commented 6 years ago

const vendor = Object.keys(pkg.dependencies).reduce((pre,cur)=>{ !/^@types/.test(cur)?pre.push(cur):''; return pre; },[])

entry: { vendor }

wlx200510 commented 5 years ago

这个打包确实没考虑用ts的情况,未加以测试

wlx200510 commented 5 years ago

fixed