-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
74 lines (73 loc) · 1.76 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
const path = require('path');
const ChromeExtensionReloader = require('webpack-chrome-extension-reloader');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
mode: 'development',
entry: {
background: path.join(__dirname, 'app', 'background'),
popup: path.join(__dirname, 'app', 'popup'),
detectjspsych: path.join(__dirname, 'app', 'detectjspsych'),
messagepasser: path.join(__dirname, 'app', 'messagepasser')
},
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'dist')
},
module: {
rules: [{
test: /.jsx?$/,
include: [
path.resolve(__dirname, 'app')
],
exclude: [
path.resolve(__dirname, 'node_modules'),
path.resolve(__dirname, 'bower_components')
],
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env']
}
},
{
test: /\.css$/,
use:[
'style-loader',
'css-loader'
]
}]
},
resolve: {
extensions: ['.json', '.js', '.jsx', '.css']
},
devtool: 'source-map',
devServer: {
publicPath: path.join('/dist/')
},
plugins: [
new ChromeExtensionReloader({
port: 8080,
reloadPage: true,
entries: {
background: 'background',
contentScript:['detectjspsych', 'messagepasser'],
popup: 'popup'
}
}),
new HtmlWebpackPlugin({
'title': "jsPsychHardware Configuration",
filename: "popup.html",
template: 'app/popup.html',
chunks: ['popup']
}),
new CopyWebpackPlugin([
"app/manifest.json",
{
from: "app/media/*",
to:"media/[name].[ext]",
flatten: true
},
"app/StreamSaver.js"
])
]
};