mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* add config files in any components folder * all test run option ft and option to skip build and run only test
18 lines
415 B
JavaScript
18 lines
415 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-core": "./index.ts"
|
|
}
|
|
});
|