1 Star 0 Fork 33

likangrong / G2Plot

forked from antv / G2Plot 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack.config.js 1.56 KB
一键复制 编辑 原始数据 按行查看 历史
lingdao.lzq 提交于 2020-03-19 15:35 . fix: cleanup webpack config
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: {
mainFields: ['module', 'main'],
extensions: ['.ts', '.js', '.less'],
},
module: {
rules: [
{
test: /\.ts$/,
use: {
loader: 'ts-loader',
options: {
transpileOnly: true,
},
},
},
{
test: /\.js$/,
/** bable 只需要处理 node_modules 中的 es6 模块,src 中的交给 ts-loader 即可 */
include: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env'],
},
},
},
{
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' })] : []),
],
performance: {
hints: false,
},
devtool: 'source-map',
};
JavaScript
1
https://gitee.com/likangrong/g2plot.git
git@gitee.com:likangrong/g2plot.git
likangrong
g2plot
G2Plot
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891