scratchjr/webpack.config.js
Chris Garrity 6c737f51b8 [WIP] Initial version with WKWebView
Upgrade webview to WKWebView with many thanks to @yueyuzhao

* Need to debug a problem saving thumbnails on iOS 9.3.5
* Needs much more testing
2020-08-17 10:37:14 -04:00

41 lines
961 B
JavaScript

var WebpackNotifierPlugin = require('webpack-notifier');
module.exports = {
devtool: 'source-map',
entry: {
app: './src/entry/app.js'
},
output: {
path: __dirname + '/src/build/bundles',
filename: '[name].bundle.js'
},
performance: {
hints: false
},
watchOptions: {
ignored: ["node_modules", "src/build/**/*"]
},
module: {
rules: [
{
test: /\.js$/,
include: /node_modules/,
loaders: ['strip-sourcemap-loader']
},
{
loader: 'babel-loader',
exclude: /node_modules/,
test: /\.jsx?$/,
query: {
presets: ['es2015', 'stage-3']
}
}
]
},
plugins: [
new WebpackNotifierPlugin({
title: "ScratchJr",
alwaysNotify: true
})
]
};