40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
const path = require('path');
|
|
const ip = require('ip');
|
|
// The common js bundle (not this one) is built using tsc.
|
|
// The umd bundle (this one) has a different entrypoint.
|
|
const config = {
|
|
entry: './src/index.umd.ts',
|
|
output: {
|
|
filename: '[name].bundle.js',
|
|
path: path.resolve(__dirname, 'public'),
|
|
library: 'zeroExInstant',
|
|
libraryTarget: 'umd',
|
|
},
|
|
devtool: 'source-map',
|
|
resolve: {
|
|
extensions: ['.js', '.json', '.ts', '.tsx'],
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.(ts|tsx)$/,
|
|
loader: 'awesome-typescript-loader',
|
|
},
|
|
],
|
|
},
|
|
devServer: {
|
|
contentBase: path.join(__dirname, 'public'),
|
|
port: 5000,
|
|
host: '0.0.0.0',
|
|
after: () => {
|
|
if (config.devServer.host === '0.0.0.0') {
|
|
console.log(
|
|
`webpack-dev-server can be accessed externally at: http://${ip.address()}:${config.devServer.port}`,
|
|
);
|
|
}
|
|
},
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|