cc0ea30ef650da8b4f8abd071b8f25fc4221550a43c100ebddf2ef4b06ad680e1b870cdeb7b2b53c0cd173ef65e433ac46ee82a50bb8a574d635757a683d0d 725 B

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