mergeConfig<
T
>(...configs
):T
Merge multiple configs together. The latter takes precedence if values have conflicts.
This function is preferred to {...config1, ...config2}
because some keys need to be
merged instead of overwritten, e.g. exclude
. Please refer to DEFAULT_MERGER
for more details.
Example:
const config1 = { maxLineLength: 80, tabSize: 2 };
const config2 = { maxLineLength: 100 };
const config = mergeConfig(config1, config2); // { maxLineLength: 100, tabSize: 2 }
• T extends Configuration
= Configuration
...T
[]
An array of config objects
T