1 Star 0 Fork 33

jiangtao / g2plot

forked from antv / G2Plot 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack.config.js 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
zqlu 提交于 2019-09-25 19:21 . feat: support slider for line chart
const webpack = require('webpack');
const resolve = require('path').resolve;
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
module.exports = {
entry: {
g2plot: './src/index.ts',
},
output: {
filename: '[name].js',
library: 'g2plot',
libraryTarget: 'umd',
path: resolve(__dirname, 'dist/'),
},
resolve: {
extensions: ['.ts', '.js', '.less'],
},
module: {
rules: [
{
test: /\.ts$/,
use: {
loader: 'ts-loader',
options: {
transpileOnly: true,
},
},
},
{
test: /\.less$/,
use: [
{
loader: 'style-loader', // creates style nodes from JS strings
},
{
loader: 'css-loader', // translates CSS into CommonJS
},
{
loader: 'less-loader', // compiles Less to CSS
},
],
},
],
},
plugins: [
new webpack.NoEmitOnErrorsPlugin(),
new webpack.optimize.AggressiveMergingPlugin(),
...(process.env.MODE === 'ANALYZER' ? [new BundleAnalyzerPlugin({ analyzerMode: 'static' })] : []),
],
externals: {
moment: 'moment',
'../moment': 'moment',
},
performance: {
hints: false,
},
devtool: 'source-map',
};
JavaScript
1
https://gitee.com/yltest1111/g2plot.git
git@gitee.com:yltest1111/g2plot.git
yltest1111
g2plot
g2plot
master

搜索帮助