Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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. }