-
Notifications
You must be signed in to change notification settings - Fork 6
/
webpack.common.js
89 lines (88 loc) · 2.23 KB
/
webpack.common.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
const path = require('path');
const CopyPlugin = require('copy-webpack-plugin');
const Dotenv = require('dotenv-webpack');
const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin');
module.exports = {
entry: {
popup: path.join(__dirname, 'src/ui/index.tsx'),
background: path.join(__dirname, 'src/background/index.ts'),
contentScript: path.join(__dirname, 'src/contentScript/contentScript.ts'),
injectedScript: path.join(__dirname, 'src/contentScript/inject/injectedScript.ts'),
},
output: {
path: path.join(__dirname, 'dist/js'),
filename: '[name].js',
},
plugins: [
new CopyPlugin([
// prettier-ignore
{
from: './src/manifest.json',
to: path.join(__dirname, 'dist'),
},
{
from: 'node_modules/webextension-polyfill/dist/browser-polyfill.min.js',
to: path.join(__dirname, 'dist/js'),
},
{
from: './src/popup.html',
to: path.join(__dirname, 'dist'),
},
{
from: './src/notification.html',
to: path.join(__dirname, 'dist'),
},
{
from: './src/background.html',
to: path.join(__dirname, 'dist'),
},
{
from: './src/ui/public/assets/logo-32.png',
to: path.join(__dirname, 'dist'),
},
{
from: './src/ui/public/assets/logo-32.svg',
to: path.join(__dirname, 'dist'),
},
{
from: './src/ui/public/assets/logo-128.png',
to: path.join(__dirname, 'dist'),
},
]),
new Dotenv(),
],
module: {
rules: [
// prettier-ignore
{
exclude: /node_modules/,
test: /\.tsx?$/,
use: 'ts-loader',
},
{
exclude: /node_modules/,
test: /\.scss$/,
use: [
// prettier-ignore
{
loader: 'style-loader', // Creates style nodes from JS strings
},
{
loader: 'css-loader', // Translates CSS into CommonJS
},
{
loader: 'sass-loader', // Compiles Sass to CSS
},
],
},
],
},
resolve: {
extensions: ['.ts', '.tsx', '.js'],
plugins: [
new TsconfigPathsPlugin({
configFile: './tsconfig.json',
}),
],
},
};