-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
86 lines (86 loc) · 2.42 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
const { CheckerPlugin } = require("awesome-typescript-loader");
const HtmlWebpackPlugin = require('html-webpack-plugin');
// const MiniCssExtractPlugin = require("mini-css-extract-plugin");
// const CopyWebpackPlugin = require('copy-webpack-plugin');
const { optimize } = require("webpack");
const { join } = require("path");
let prodPlugins = [];
if (process.env.NODE_ENV === "production") {
prodPlugins.push(
new optimize.AggressiveMergingPlugin(),
new optimize.OccurrenceOrderPlugin()
);
}
module.exports = {
mode: process.env.NODE_ENV,
devtool: "inline-source-map",
devServer: {
contentBase: join(__dirname, "./src"),
historyApiFallback: true,
},
entry: {
// contentscript: join(__dirname, "src/contentscript/contentscript.ts"),
background: join(__dirname, "src/background/background.ts"),
popup: join(__dirname, "./src/index-popup.tsx"),
options: join(__dirname, "./src/index-options.tsx"),
content: join(__dirname, "./src/index-content.tsx"),
},
output: {
path: join(__dirname, "dist"),
filename: "[name].bundle.js",
},
module: {
rules: [
{
exclude: /node_modules/,
test: /\.tsx?$/,
use: "awesome-typescript-loader", // ?{configFileName: "tsconfig.json"}
},
{
test: /\.(scss|sass|css)$/,
use: ['style-loader', 'css-loader', 'postcss-loader', 'sass-loader'],
},
{
test: /\.html$/,
use: ["html-loader"],
},
{
test: /\.jpe?g$|\.gif$|\.png$|\.svg$|\.woff$|\.ttf$|\.aac$/,
use: ["file-loader"],
},
],
},
plugins: [
new CheckerPlugin(),
...prodPlugins,
// new MiniCssExtractPlugin({
// filename: "[name].css",
// chunkFilename: "[id].css",
// }),
new HtmlWebpackPlugin({
filename: 'popup.html',
template: 'src/popup.html',
chunks: ['popup']
}),
new HtmlWebpackPlugin({
filename: 'options.html',
template: 'src/options.html',
chunks: ['options']
}),
new HtmlWebpackPlugin({
filename: 'content.html',
template: 'src/content.html',
chunks: ['content']
}),
// new CopyWebpackPlugin({
// patterns: [
// // { from: 'src/manifest.json', to: '[name].[ext]' },
// // { from: 'src/background.js', to: '[name].[ext]' },
// { from: 'src/injectscript.js', to: '[name].[ext]' },
// ]
// }),
],
resolve: {
extensions: [".ts", ".js", ".tsx"],
},
};