import { Configuration } from 'webpack'; import { ConfigComposer } from './'; /** * Set a property to config * @param key * @param value */ export function setProperty(key: TKey, value: Configuration[TKey]): ConfigComposer { return () => { const config: Configuration = {}; config[key] = value; return config; }; }