41 lines
1.0 KiB
JavaScript
41 lines
1.0 KiB
JavaScript
const path = require('path');
|
|
const VueLoaderPlugin = require('vue-loader/lib/plugin');
|
|
|
|
module.exports = (env = {}) => ({
|
|
mode: env.production ? 'production' : 'development',
|
|
entry: path.resolve(__dirname, 'src/index.js'),
|
|
output: {
|
|
filename: env.production ? 'travian.min.js' : 'travian.js',
|
|
path: path.resolve(__dirname, 'dist'),
|
|
library: 'travian',
|
|
libraryTarget: 'umd',
|
|
umdNamedDefine: true,
|
|
},
|
|
resolve: {
|
|
extensions: ['.ts', '.js', '.vue'],
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.ts$/,
|
|
use: {
|
|
loader: 'ts-loader',
|
|
},
|
|
},
|
|
{
|
|
test: /\.(c|sc|sa)ss$/i,
|
|
use: ['style-loader', 'css-loader', 'sass-loader'],
|
|
},
|
|
{
|
|
test: /\.vue$/,
|
|
use: {
|
|
loader: 'vue-loader',
|
|
}
|
|
},
|
|
],
|
|
},
|
|
plugins: [
|
|
new VueLoaderPlugin(),
|
|
],
|
|
});
|