Sha256: 133218f9e1fb7a5d8f7bed9cd895c3761c533f21a4e6ed75a053bee03b173a85
Contents?: true
Size: 1.02 KB
Versions: 17
Compression:
Stored size: 1.02 KB
Contents
'use strict'; /* eslint-disable no-undefined */ function normalizeOptions(compiler, options) { // Setup default value options.contentBase = options.contentBase !== undefined ? options.contentBase : process.cwd(); // Setup default value options.contentBasePublicPath = options.contentBasePublicPath || '/'; // normalize transportMode option if (options.transportMode === undefined) { options.transportMode = { server: 'sockjs', client: 'sockjs', }; } else { switch (typeof options.transportMode) { case 'string': options.transportMode = { server: options.transportMode, client: options.transportMode, }; break; // if not a string, it is an object default: options.transportMode.server = options.transportMode.server || 'sockjs'; options.transportMode.client = options.transportMode.client || 'sockjs'; } } if (!options.watchOptions) { options.watchOptions = {}; } } module.exports = normalizeOptions;
Version data entries
17 entries across 16 versions & 6 rubygems