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
543 B
19 lines
543 B
/** |
|
* @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 |
|
};
|
|
|