element-plus/build/webpack.config.js
zazzaz 6b69d0a457
build: fix build bundle (#545)
* chore: update

* chore: update
2020-11-05 19:11:04 +08:00

82 lines
1.7 KiB
JavaScript

/* eslint-disable @typescript-eslint/no-var-requires */
const path = require('path')
const { VueLoaderPlugin } = require('vue-loader')
const babelOptions = {
plugins: ['@vue/babel-plugin-jsx'],
}
module.exports = {
mode: 'production',
entry: path.resolve(__dirname, '../packages/element-plus/index.ts'),
output: {
path: path.resolve(__dirname, '../lib'),
publicPath: '/',
filename: 'index.js',
libraryTarget: 'umd',
libraryExport: 'default',
library: 'ElementPlus',
umdNamedDefine: true,
globalObject: 'typeof self !== \'undefined\' ? self : this',
},
stats: 'verbose',
module: {
rules: [
{
test: /\.vue$/,
use: 'vue-loader',
},
{
test: /\.ts$/,
exclude: /node_modules/,
loader: 'ts-loader',
options: {
appendTsSuffixTo: [/\.vue$/],
transpileOnly: true,
},
},
{
test: /\.tsx$/,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader',
options: babelOptions,
},
{
loader: 'ts-loader',
options: {
appendTsxSuffixTo: [/\.vue$/],
transpileOnly: true,
},
},
],
},
{
test: /\.js(x?)$/,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader',
options: babelOptions,
},
],
},
],
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.json'],
},
externals: {
vue: {
root: 'Vue',
commonjs: 'vue',
commonjs2: 'vue',
amd: 'vue',
},
},
plugins: [
new VueLoaderPlugin(),
],
}