-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
113 lines (110 loc) · 2.81 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
const path = require('path')
const webpack = require('webpack')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const CopyPlugin = require('copy-webpack-plugin')
// const TerserPlugin = require('terser-webpack-plugin')
const OUTPUT_DIR = './extension'
module.exports = (cliParams, webpackParams) => ({
context: __dirname,
entry: {
background: path.join(__dirname, './src/background/background.ts'),
contentscript: path.join(__dirname, './src/contentscript.ts'),
popup: path.join(__dirname, './src/popup/popup.tsx'),
app: path.join(__dirname, './src/app/app.tsx'),
},
target: 'web',
resolve: {
extensions: ['.js', '.ts', '.tsx'],
modules: ['node_modules'],
},
output: {
path: path.join(__dirname, OUTPUT_DIR),
filename: '[name].js',
publicPath: "./",
},
// devtool: 'source-map',
devtool: 'inline-source-map',
optimization: {
minimize: webpackParams.mode === 'production',
},
module: {
rules: [
{
test: /\.(js|ts|tsx)$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
}
},
{
test: /\.(ts|tsx)$/,
use: [{
loader: 'ts-loader',
options: {
transpileOnly: true
}
}],
exclude: /node_modules/,
},
{
test: /\.(css)$/i,
loader: 'file-loader',
options: {
name: 'css/[name].[ext]',
},
},
{
test: /\.(svg)$/i,
loader: 'file-loader',
options: {
name: 'assets/[name].[ext]',
},
},
{
test: /\.(eot|ttf|woff)$/i,
loader: 'file-loader',
options: {
name: 'fonts/[name].[ext]',
},
},
]
},
plugins: [
new webpack.DefinePlugin({
"process.env": "{}", // костыль для @blueprintjs
}),
new HtmlWebpackPlugin({
minify: false,
title: 'History time visits',
excludeChunks: ['background', 'contentscript', 'popup'],
inject: 'body',
template: path.join(__dirname, './src/app/app.ejs'),
filename: 'app.html'
}),
new HtmlWebpackPlugin({
minify: false,
title: 'History time visits',
excludeChunks: ['background', 'contentscript', 'app'],
inject: 'body',
template: path.join(__dirname, './src/popup/popup.ejs'),
filename: 'popup.html'
}),
new CopyPlugin({
patterns: [
{
from: path.join(__dirname, './src', "manifest.json"),
to: path.join(__dirname, OUTPUT_DIR)
},
{
from: path.join(__dirname, './src', "images"),
to: path.join(__dirname, OUTPUT_DIR, "images")
},
],
}),
/* new webpack.SourceMapDevToolPlugin({
append: '\n//# sourceURL=[url]',
filename: '[name][ext].map'
}),
*/
]
})