b2b528885a
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
See c81b9ae648
65 lines
1.3 KiB
JavaScript
65 lines
1.3 KiB
JavaScript
const path = require('path')
|
|
const webpack = require('webpack')
|
|
const { VueLoaderPlugin } = require('vue-loader')
|
|
const StyleLintPlugin = require('stylelint-webpack-plugin')
|
|
|
|
module.exports = {
|
|
entry: path.join(__dirname, 'src', 'main.js'),
|
|
output: {
|
|
path: path.resolve(__dirname, './js'),
|
|
publicPath: '/js/',
|
|
filename: 'tasks.js'
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.css$/,
|
|
use: ['vue-style-loader', 'css-loader']
|
|
},
|
|
{
|
|
test: /\.scss$/,
|
|
use: ['vue-style-loader', 'css-loader', 'sass-loader']
|
|
},
|
|
{
|
|
test: /src\/.*\.(js|vue)$/,
|
|
use: 'eslint-loader',
|
|
enforce: 'pre'
|
|
},
|
|
{
|
|
test: /\.vue$/,
|
|
loader: 'vue-loader'
|
|
},
|
|
{
|
|
test: /\.js$/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
options: {
|
|
plugins: [
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
'@babel/plugin-proposal-object-rest-spread'
|
|
],
|
|
presets: ['@babel/preset-env']
|
|
}
|
|
},
|
|
exclude: /node_modules\/(?!(p-limit|p-defer|p-queue|p-try|cdav-library))/
|
|
},
|
|
{
|
|
test: /\.(png|jpg|gif|svg)$/,
|
|
loader: 'file-loader',
|
|
options: {
|
|
name: '[name].[ext]?[hash]'
|
|
}
|
|
}
|
|
]
|
|
},
|
|
plugins: [
|
|
new VueLoaderPlugin(),
|
|
new StyleLintPlugin(),
|
|
new webpack.DefinePlugin({
|
|
$appVersion: JSON.stringify(require('./package.json').version)
|
|
})
|
|
],
|
|
resolve: {
|
|
extensions: ['*', '.js', '.vue', '.json']
|
|
}
|
|
}
|