5e56a2a0b3f54112ad9c77495c61a49e1855da5d9239338412c13dd6c94382ed40546a26ec6de2bf750efd32fa2cbf25d9aaa5a91b07ea89515556d2634c9f 747 B

1234567891011121314151617181920212223242526272829
  1. type indexBrowserType = typeof import("./index-browser");
  2. type indexType = typeof import("./index");
  3. // Kind of gross, but essentially asserting that the exports of this module are the same as the
  4. // exports of index-browser, since this file may be replaced at bundle time with index-browser.
  5. ({}) as any as indexBrowserType as indexType;
  6. export { findPackageData } from "./package.ts";
  7. export {
  8. findConfigUpwards,
  9. findRelativeConfig,
  10. findRootConfig,
  11. loadConfig,
  12. resolveShowConfigPath,
  13. ROOT_CONFIG_FILENAMES,
  14. } from "./configuration.ts";
  15. export type {
  16. ConfigFile,
  17. IgnoreFile,
  18. RelativeConfig,
  19. FilePackageData,
  20. } from "./types.ts";
  21. export {
  22. loadPlugin,
  23. loadPreset,
  24. resolvePlugin,
  25. resolvePreset,
  26. } from "./plugins.ts";