14 Star 58 Fork 19

antv-g2plot / antv-g2plot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack.config.js 1.58 KB
一键复制 编辑 原始数据 按行查看 历史
const webpack = require('webpack');
const resolve = require('path').resolve;
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const BABEL_OPTIONS = {
presets: [
[
'@babel/preset-env',
{
targets: '> 0.25%, not dead',
},
],
],
plugins: [
[
'@babel/transform-runtime',
{
helpers: false,
regenerator: true,
},
],
],
};
module.exports = {
entry: {
g2plot: './src/index.ts',
},
output: {
filename: '[name].min.js',
library: 'G2Plot',
libraryTarget: 'umd',
path: resolve(__dirname, 'dist/'),
},
resolve: {
mainFields: ['module', 'main'],
extensions: ['.ts', '.js', '.less'],
},
module: {
rules: [
{
test: /\.ts$/,
use: [
{
loader: 'babel-loader',
options: BABEL_OPTIONS,
},
{
loader: 'ts-loader',
options: {
transpileOnly: true,
},
},
]
},
{
test: /\.js$/,
/** bable 只需要处理 node_modules 中的 es6 模块,src 中的交给 ts-loader 即可 */
include: /node_modules/,
use: {
loader: 'babel-loader',
options: BABEL_OPTIONS,
},
},
],
},
plugins: [
new webpack.NoEmitOnErrorsPlugin(),
new webpack.optimize.AggressiveMergingPlugin(),
...(process.env.MODE === 'ANALYZER' ? [new BundleAnalyzerPlugin({ analyzerMode: 'static' })] : []),
],
performance: {
hints: false,
},
devtool: 'source-map',
};
JavaScript
1
https://gitee.com/antv-g2plot/antv-g2plot.git
git@gitee.com:antv-g2plot/antv-g2plot.git
antv-g2plot
antv-g2plot
antv-g2plot
master

搜索帮助