-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.js
77 lines (76 loc) · 1.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
const path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
entry: {
infoscreens: './index.js',
infodisplay: './infodisplay/infodisplay.js',
calendar: './events/calendar.js',
'35c3-calendar': './35c3-events/calendar.js',
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'lib/[name].js',
library: '[name]',
libraryTarget: 'umd',
},
mode: 'production',
module: {
rules: [
{
test: /\.js$/,
exclude: /paho.mqtt.js/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env'],
plugins: ['transform-class-properties'],
},
},
},
],
},
plugins: [
new CopyWebpackPlugin([
{
from: '**/index.html',
to: './',
ignore: ['node_modules/**/*.html'],
},
{
from: '**/*.svg',
to: './',
ignore: ['node_modules/**/*.svg'],
},
{
from: 'theme/*',
to: './',
},
{
from: 'node_modules/@webcomponents/webcomponentsjs/webcomponents-lite.js',
to: './vendor/webcomponentsjs/webcomponents-lite.js',
},
{
from: 'node_modules/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js',
to: './vendor/webcomponentsjs/custom-elements-es5-adapter.js',
},
{
from: 'plotly-workaround-for-firefox/plotly.min.js',
to: './vendor/plotly.js/plotly.min.js',
},
]),
],
externals: {
newrelic: 'commonjs newrelic',
tv4: 'commonjs tv4',
'ampqlib/callback_api': 'commonjs ampqlib/callback_api',
mqtt: 'commonjs mqtt',
},
node: {
fs: 'empty',
},
devServer: {
host: process.env.HOST || 'localhost',
port: 3000,
inline: true,
},
};