-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
67 lines (65 loc) · 1.95 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
const path = require('path')
const CleanWebpackPlugin = require("clean-webpack-plugin").CleanWebpackPlugin,
CopyWebpackPlugin = require("copy-webpack-plugin"),
HtmlWebpackPlugin = require("html-webpack-plugin"),
WriteFilePlugin = require("write-file-webpack-plugin");
module.exports = {
devtool: 'inline-source-map',
entry: {
inject: path.resolve(__dirname, 'src', 'inject.ts'),
advancedSearchChema: path.resolve(__dirname, 'src', 'advanced-search-schema.ts'),
background: path.resolve(__dirname, 'src', 'background.ts')
},
output: {
path: path.resolve(__dirname, 'build'),
filename: '[name].js'
},
module: {
rules: [
{
test: /\.ts$/,
exclude: /node_modules/,
loader: 'ts-loader'
}
]
},
resolve: {
modules: [
path.resolve(__dirname, 'src'),
path.resolve(__dirname, 'node_modules')
],
extensions: ['.js', '.ts']
},
plugins: [
new CopyWebpackPlugin([{
from: "manifest.json",
transform: function (content, path) {
return Buffer.from(JSON.stringify({
description: process.env.npm_package_description,
version: process.env.npm_package_version,
...JSON.parse(content.toString())
}))
}
},
{
from: "images",
to: "images"
},
{
from: "src/popup.js",
to: "popup.js"
}
]),
new HtmlWebpackPlugin({
template: path.join(__dirname, "src", "popup.html"),
filename: "popup.html",
chunks: ["popup"]
}),
new HtmlWebpackPlugin({
template: path.join(__dirname, "src", "help.html"),
filename: "help.html",
chunks: ["help"]
}),
new WriteFilePlugin()
]
}