Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

DllPlugin.d.ts 725B

1234567891011121314151617181920212223242526272829303132
  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 DllPluginOptions {
  7. /**
  8. * Context of requests in the manifest file (defaults to the webpack context)
  9. */
  10. context?: string;
  11. /**
  12. * If true, only entry points will be exposed
  13. */
  14. entryOnly?: boolean;
  15. /**
  16. * If true, manifest json file (output) will be formatted
  17. */
  18. format?: boolean;
  19. /**
  20. * Name of the exposed dll function (external name, use value of 'output.library')
  21. */
  22. name?: string;
  23. /**
  24. * Absolute path to the manifest json file (output)
  25. */
  26. path: string;
  27. /**
  28. * Type of the dll bundle (external type, use value of 'output.libraryTarget')
  29. */
  30. type?: string;
  31. }