Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

LoaderOptionsPlugin.d.ts 596B

123456789101112131415161718192021222324252627
  1. /**
  2. * This file was automatically generated.
  3. * DO NOT MODIFY BY HAND.
  4. * Run `yarn special-lint-fix` to update
  5. */
  6. export interface LoaderOptionsPluginOptions {
  7. /**
  8. * Whether loaders should be in debug mode or not. debug will be removed as of webpack 3
  9. */
  10. debug?: boolean;
  11. /**
  12. * Where loaders can be switched to minimize mode
  13. */
  14. minimize?: boolean;
  15. /**
  16. * A configuration object that can be used to configure older loaders
  17. */
  18. options?: {
  19. /**
  20. * The context that can be used to configure older loaders
  21. */
  22. context?: string;
  23. [k: string]: any;
  24. };
  25. [k: string]: any;
  26. }