1 Star 0 Fork 60

zengzhiqun/G2

forked from antv/G2 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 936 Bytes
一键复制 编辑 原始数据 按行查看 历史
simaQ 提交于 2020-01-13 12:17 . chore: webpack 打包
const webpack = require('webpack');
const resolve = require('path').resolve;
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
module.exports = {
entry: {
g2: './src/index.ts',
},
output: {
filename: '[name].min.js',
library: 'G2',
libraryTarget: 'umd',
path: resolve(__dirname, 'dist/'),
},
module: {
rules: [
{
test: /\.ts$/,
use: {
loader: 'ts-loader',
options: {
transpileOnly: true,
},
},
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
plugins: [
new webpack.NoEmitOnErrorsPlugin(),
new webpack.optimize.AggressiveMergingPlugin(),
new BundleAnalyzerPlugin({
analyzerMode: 'disabled', // 不启动展示打包报告的http服务器
generateStatsFile: false, // 是否生成stats.json文件
}),
],
devtool: 'source-map',
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/zengzhiqun/g2.git
git@gitee.com:zengzhiqun/g2.git
zengzhiqun
g2
G2
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385