20 lines
543 B
JavaScript
20 lines
543 B
JavaScript
|
/**
|
||
|
* @fileoverview `ConfigArray` class.
|
||
|
* @author Toru Nagashima <https://github.com/mysticatea>
|
||
|
*/
|
||
|
|
||
|
import { ConfigArray, getUsedExtractedConfigs } from "./config-array.js";
|
||
|
import { ConfigDependency } from "./config-dependency.js";
|
||
|
import { ExtractedConfig } from "./extracted-config.js";
|
||
|
import { IgnorePattern } from "./ignore-pattern.js";
|
||
|
import { OverrideTester } from "./override-tester.js";
|
||
|
|
||
|
export {
|
||
|
ConfigArray,
|
||
|
ConfigDependency,
|
||
|
ExtractedConfig,
|
||
|
IgnorePattern,
|
||
|
OverrideTester,
|
||
|
getUsedExtractedConfigs
|
||
|
};
|