42 lines
1.0 KiB
JavaScript
42 lines
1.0 KiB
JavaScript
const { merge } = require('webpack-merge');
|
|
const path = require('path');
|
|
const webpackCommon = require('./../../../.webpack/webpack.base.js');
|
|
|
|
const pkg = require('./../package.json');
|
|
const ROOT_DIR = path.join(__dirname, './../');
|
|
const SRC_DIR = path.join(__dirname, '../src');
|
|
const DIST_DIR = path.join(__dirname, '../dist');
|
|
|
|
const ENTRY = {
|
|
app: `${SRC_DIR}/index.ts`,
|
|
};
|
|
|
|
module.exports = (env, argv) => {
|
|
const commonConfig = webpackCommon(env, argv, { SRC_DIR, DIST_DIR, ENTRY });
|
|
|
|
return merge(commonConfig, {
|
|
stats: {
|
|
colors: true,
|
|
hash: true,
|
|
timings: true,
|
|
assets: true,
|
|
chunks: false,
|
|
chunkModules: false,
|
|
modules: false,
|
|
children: false,
|
|
warnings: true,
|
|
},
|
|
optimization: {
|
|
minimize: true,
|
|
sideEffects: false,
|
|
},
|
|
output: {
|
|
path: ROOT_DIR,
|
|
library: 'ohif-core',
|
|
libraryTarget: 'umd',
|
|
filename: pkg.main,
|
|
},
|
|
externals: [/\b(vtk.js)/, /\b(dcmjs)/, /\b(gl-matrix)/, /^@cornerstonejs/],
|
|
});
|
|
};
|