1 Star 7 Fork 0

xiaoyi/wecom-js-sdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 591 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiaoyi 提交于 2020-09-21 15:10 . fix: update readme and debug.
'use strict';
let path = require('path');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
console.log(path.join(__dirname, './src'));
module.exports = {
mode: 'production',
entry: {
index: './src/index.ts'
},
output: {
path: path.join(__dirname, './dist'),
filename: 'weCom.js',
libraryTarget: "umd"
},
module: {
rules: [{
test: /\.ts?$/,
use: 'ts-loader',
exclude: /node_modules/
}]
},
resolve: {
extensions: ['.tsx', '.ts', '.js']
},
plugins: [
new BundleAnalyzerPlugin()
]
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/xuqiang1227/wecom-js-sdk.git
[email protected]:xuqiang1227/wecom-js-sdk.git
xuqiang1227
wecom-js-sdk
wecom-js-sdk
master

搜索帮助