-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
webpack.config.js
60 lines (57 loc) · 1.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
const path = require('path');
const NodePolyfillPlugin = require('node-polyfill-webpack-plugin');
const config = {
entry: {
app: './src/app/index.tsx',
service_worker: './src/extension/service_worker.ts',
content: './src/extension/contentScript.ts',
},
output: {
path: path.resolve(__dirname, 'src/extension/build/bundles'),
filename: '[name].bundle.js',
},
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.jsx?/,
exclude: /(node_modules)/,
resolve: {
extensions: ['.js', '.jsx'],
},
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env', '@babel/preset-react'],
},
},
},
{
// scss is uploaded to dependencies, not devDependencies. Also not used anywhere (5.2023 KW)
test: /\.scss$/,
use: ['style-loader', 'css-loader', 'sass-loader'],
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js', '.jsx'],
},
plugins: [new NodePolyfillPlugin()],
// the following option prevents webpack from minifying the code
optimization: {
minimize: false,
},
};
// module.exports = {
// // Other rules...
// plugins: [new NodePolyfillPlugin()],
// };
module.exports = config;