From 91a34889f94422d02f08f76fb7442b2556424ec5 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Wed, 24 May 2017 12:08:15 +0200 Subject: Add webpack config and npm scripts --- webpack.config.js | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 webpack.config.js (limited to 'webpack.config.js') diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 000000000..7c7685ebe --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,37 @@ +const webpack = require('webpack'); +const path = require('path'); + +module.exports = { + entry: { + '0x': './src/ts/0x.js.ts', + '0x.min': './src/ts/0x.js.ts' + }, + output: { + path: path.resolve(__dirname, '_bundles'), + filename: '[name].js', + libraryTarget: 'umd', + library: 'zeroEx', + umdNamedDefine: true + }, + resolve: { + extensions: ['.ts', '.js'] + }, + devtool: 'source-map', + plugins: [ + new webpack.optimize.UglifyJsPlugin({ + minimize: true, + sourceMap: true, + include: /\.min\.js$/, + }) + ], + module: { + loaders: [{ + test: /\.ts$/, + loader: 'awesome-typescript-loader', + exclude: /node_modules/, + query: { + declaration: false, + } + }] + } +} -- cgit v1.2.3