-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathserver.ts
58 lines (52 loc) · 1.65 KB
/
server.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* 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
*/
import { isAbsolute } from 'path';
import { Configuration } from 'webpack';
import { WebpackConfigOptions } from '../build-options';
import { getSourceMapDevTool } from './utils';
/**
* Returns a partial specific to creating a bundle for node
* @param wco Options which are include the build options and app config
*/
export function getServerConfig(wco: WebpackConfigOptions): Configuration {
const extraPlugins = [];
if (wco.buildOptions.sourceMap) {
const { scripts, styles, hidden } = wco.buildOptions.sourceMap;
extraPlugins.push(getSourceMapDevTool(scripts || false, styles || false, hidden || false));
}
const config: Configuration = {
resolve: {
mainFields: [...(wco.supportES2015 ? ['es2015'] : []), 'main', 'module'],
},
target: 'node',
output: {
libraryTarget: 'commonjs',
},
plugins: extraPlugins,
node: false,
};
if (wco.buildOptions.bundleDependencies == 'none') {
config.externals = [
/^@angular/,
(context: string, request: string, callback: (error?: null, result?: string) => void) => {
// Absolute & Relative paths are not externals
if (/^\.{0,2}\//.test(request) || isAbsolute(request)) {
return callback();
}
try {
require.resolve(request);
callback(null, request);
} catch {
// Node couldn't find it, so it must be user-aliased
callback();
}
},
];
}
return config;
}