You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

66 lines
1.3 KiB

7 years ago
const HtmlWebpackPlugin = require('html-webpack-plugin');
const path = require('path');
const src = path.resolve(__dirname, 'src');
const dist = path.resolve(__dirname, 'build');
const config = {
entry: {
content: path.join(src, 'content'),
settings: path.join(src, 'settings'),
background: path.join(src, 'background'),
7 years ago
console: path.join(src, 'console')
},
output: {
path: dist,
filename: '[name].js'
},
5 years ago
optimization: {
minimize: false
},
performance: {
hints: false
},
module: {
6 years ago
rules: [
{
test: [ /\.ts$/, /\.tsx$/],
exclude: /node_modules/,
loader: 'ts-loader'
},
{
test: /\.css$/,
loader: 'style-loader!css-loader',
},
{
test: /\.scss$/,
loader: 'style-loader!css-loader!sass-loader?sourceMap=true'
},
]
},
resolve: {
extensions: [ '.js', '.jsx', '.ts', '.tsx' ],
modules: [path.join(__dirname, 'src'), 'node_modules']
},
plugins: [
new HtmlWebpackPlugin({
7 years ago
template: path.join(src, 'console', 'index.html'),
filename: path.join(dist, 'console.html'),
inject: false
7 years ago
}),
new HtmlWebpackPlugin({
template: path.join(src, 'settings', 'index.html'),
7 years ago
filename: path.join(dist, 'settings.html'),
inject: false
})
]
};
7 years ago
module.exports = config