mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
84 lines
1.7 KiB
JavaScript
84 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: '/',
|
||
|
},
|
||
|
stats: 'verbose',
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.vue$/,
|
||
|
use: 'vue-loader',
|
||
|
},
|
||
|
{ // todo remote
|
||
|
test: /\.(sass|scss|css)$/,
|
||
|
use: [
|
||
|
'style-loader',
|
||
|
'css-loader',
|
||
|
{
|
||
|
loader: 'sass-loader',
|
||
|
options: {
|
||
|
implementation: require('sass'),
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
{
|
||
|
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', '.vue', '.json'],
|
||
|
},
|
||
|
externals: {
|
||
|
vue: 'Vue',
|
||
|
},
|
||
|
plugins: [
|
||
|
new VueLoaderPlugin(),
|
||
|
],
|
||
|
}
|