diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2018-05-15 21:20:00 -0500 |
|---|---|---|
| committer | oldmud0 <oldmud0@users.noreply.github.com> | 2018-05-15 21:20:00 -0500 |
| commit | 5685e2b1714c8d85e505e9eccee549723773aaab (patch) | |
| tree | 9cb8a263087218bcc84686f871cd6e70abdc673c /webpack.config.js | |
| parent | c26ac0e636a71b850fa316f5bead6ba263b55492 (diff) | |
Move files to webAO folder; GoldenLayout works!
Diffstat (limited to 'webpack.config.js')
| -rw-r--r-- | webpack.config.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000..48f638c --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,20 @@ +module.exports = { + entry: './webAO/ui.js', + output: { + filename: './webAO/ui.b.js' + }, + module: { + rules: [ + { + test: /\.js?$/, + exclude: /node_modules/, + use: { + loader: 'babel-loader', + options: { + presets: ['es2015'] + } + } + } + ] + } +}
\ No newline at end of file |
