2017-03-15 00:11:39 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
2020-05-19 19:08:49 +00:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2017-03-15 00:11:39 +00:00
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
|
*/
|
|
|
|
|
|
2021-09-21 17:28:02 +00:00
|
|
|
import * as path from 'path';
|
|
|
|
|
import {moduleRules, baseDir} from './base-config.mjs';
|
2017-03-15 00:11:39 +00:00
|
|
|
|
2021-09-21 17:28:02 +00:00
|
|
|
export default {
|
2017-03-15 00:11:39 +00:00
|
|
|
entry: {
|
|
|
|
|
helloworld: './built/src/helloworld/client.js',
|
2017-09-11 07:18:55 +00:00
|
|
|
transferstate: './built/src/transferstate/client.js',
|
2017-03-15 00:11:39 +00:00
|
|
|
},
|
2021-09-21 17:28:02 +00:00
|
|
|
// Allow for better debugging of this integration test.
|
|
|
|
|
optimization: {minimize: false},
|
|
|
|
|
output: {path: path.join(baseDir, 'webpack-out'), filename: '[name]-bundle.js'},
|
|
|
|
|
module: {
|
|
|
|
|
rules: moduleRules,
|
|
|
|
|
}
|
2017-03-15 00:11:39 +00:00
|
|
|
};
|