aboutsummaryrefslogtreecommitdiffstats
path: root/webpack.config.js
blob: 04822d79dc68c3a50d5bb3851a854e8dd2297fb6 (plain) (blame)
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
/**
 * This is to generate the umd bundle only
 */
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,
            },
        }],
    },
};