Files
wompchat/webpack.config.js
wompmacho 3d81e92ecb adding dev files to master
adding all the dev files, package, webpack etc, including build which will contain minified release
2020-11-01 21:02:00 -05:00

54 lines
991 B
JavaScript

// Packages
const webpack = require('webpack'),
path = require('path');
// Webpack Plugins
const CopyPlugin = require('copy-webpack-plugin');
// Paths
const srcPath = path.join(__dirname, 'src'),
distPath = path.join(__dirname, 'dev-build'),
node_modulesPath = path.join(__dirname, 'node_modules');
module.exports = {
mode: 'development',
resolve: {
alias: {
src: srcPath
}
},
context: srcPath,
entry: {
content: './content/',
background: './background/',
options: './options.js',
welcomePage: './welcomePage.js'
},
output: {
path: distPath,
filename: './[name].js'
},
module: {
rules: [
{ test: /\.styl$/, use: ['style-loader', 'css-loader', 'stylus-loader'], exclude: /node_modules/ }
]
},
plugins: [
new CopyPlugin([
'manifest.json',
'html/**/*',
'assets/**/*'
], {
ignore: [
'**/*.psd'
]
})
],
devtool: '#inline-cheap-source-map'
};