You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
591 B
19 lines
591 B
"use strict"; |
|
Object.defineProperty(exports, "__esModule", { |
|
value: true |
|
}); |
|
exports.default = resolveConfig; |
|
var _resolveConfig = _interopRequireDefault(require("../util/resolveConfig")); |
|
var _getAllConfigs = _interopRequireDefault(require("../util/getAllConfigs")); |
|
function resolveConfig(...configs) { |
|
let [, ...defaultConfigs] = (0, _getAllConfigs).default(configs[0]); |
|
return (0, _resolveConfig).default([ |
|
...configs, |
|
...defaultConfigs |
|
]); |
|
} |
|
function _interopRequireDefault(obj) { |
|
return obj && obj.__esModule ? obj : { |
|
default: obj |
|
}; |
|
}
|
|
|