mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
18 lines
421 B
JavaScript
18 lines
421 B
JavaScript
const webpack = require("webpack");
|
|
const webpackMerge = require('webpack-merge');
|
|
const commonConfig = require('../config/webpack.common.js');
|
|
|
|
module.exports = webpackMerge(commonConfig, {
|
|
|
|
output: {
|
|
filename: './bundles/[name].js',
|
|
library: '[name]',
|
|
libraryTarget: 'umd',
|
|
chunkFilename: '[id].chunk.js'
|
|
},
|
|
|
|
entry: {
|
|
"ng2-alfresco-datatable": "./index.ts"
|
|
}
|
|
});
|